Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / ardour / region_sorters.h
index ca09f194b1abe0b261da669dc86b535a4a08dce4..ee34dcaafecefd62d6d8e2fdb4bba3a19adfb452 100644 (file)
 namespace ARDOUR {
 
 struct RegionSortByPosition {
-    bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
-           return a->position() < b->position();
-    }
+       bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
+               return a->position() < b->position();
+       }
 };
 
 struct RegionSortByLastLayerOp {
-    bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
-           return a->last_layer_op() < b->last_layer_op();
-    }
+       bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
+               return a->last_layer_op() < b->last_layer_op();
+       }
 };
 
 struct RegionSortByLayer {
-    bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
-           return a->layer() < b->layer();
-    }
+       bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
+               return a->layer() < b->layer();
+       }
 };
 
 struct RegionSortByLayerWithPending {
@@ -59,6 +59,6 @@ struct RegionSortByLayerWithPending {
        }
 };
 
-} // namespace 
+} // namespace
 
 #endif /* __libardour_region_sorters_h__ */