option to ignore feedback detection - /i know what i'm doing/ mode.
[ardour.git] / libs / ardour / ardour / region_sorters.h
index 0e3203ef2057cc2092fc4941359c41d7a6ffce03..baa3a3417d7b4811a09f04188bbf71a0ccd11566 100644 (file)
@@ -36,22 +36,6 @@ struct RegionSortByLayer {
        }
 };
 
-struct RegionSortByAdd {
-       bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
-               return (
-                       (a->last_layer_op (LayerOpAdd) < b->last_layer_op (LayerOpAdd))
-                       );
-       }
-};
-
-struct RegionSortByAddOrBounds {
-       bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
-               uint64_t const p = std::max (a->last_layer_op (LayerOpAdd), a->last_layer_op (LayerOpBoundsChange));
-               uint64_t const q = std::max (b->last_layer_op (LayerOpAdd), b->last_layer_op (LayerOpBoundsChange));
-               return p < q;
-       }
-};
-
 } // namespace
 
 #endif /* __libardour_region_sorters_h__ */