NO-OP: whitespace
authorRobin Gareus <robin@gareus.org>
Tue, 27 Aug 2019 11:22:53 +0000 (13:22 +0200)
committerRobin Gareus <robin@gareus.org>
Tue, 27 Aug 2019 11:22:53 +0000 (13:22 +0200)
libs/ardour/ardour/plugin_manager.h

index c52bcbd35ed0f79976d902ff4afe56f2709b8cbd..4cbf12c8e0bd1f9516c8346727c42b89abe45471 100644 (file)
@@ -123,27 +123,27 @@ public:
 private:
 
        struct PluginTag {
-           ARDOUR::PluginType type;
-           std::string unique_id;
-           std::string tags;
-           std::string name;
+               ARDOUR::PluginType type;
+               std::string unique_id;
+               std::string tags;
+               std::string name;
                TagType tagtype;
 
-           PluginTag (ARDOUR::PluginType t, std::string id, std::string tag, std::string n, TagType tt)
-           : type (t), unique_id (id), tags (tag), name(n), tagtype (tt) {}
-
-           bool operator== (PluginTag const& other) const {
-                   return other.type == type && other.unique_id == unique_id;
-           }
-
-           bool operator< (PluginTag const& other) const {
-                   if (other.type < type) {
-                           return true;
-                   } else if (other.type == type && other.unique_id < unique_id) {
-                           return true;
-                   }
-                   return false;
-           }
+               PluginTag (ARDOUR::PluginType t, std::string id, std::string tag, std::string n, TagType tt)
+                       : type (t), unique_id (id), tags (tag), name(n), tagtype (tt) {}
+
+               bool operator== (PluginTag const& other) const {
+                       return other.type == type && other.unique_id == unique_id;
+               }
+
+               bool operator< (PluginTag const& other) const {
+                       if (other.type < type) {
+                               return true;
+                       } else if (other.type == type && other.unique_id < unique_id) {
+                               return true;
+                       }
+                       return false;
+               }
        };
 
        typedef std::set<PluginTag> PluginTagList;