summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/plugin_manager.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-27 13:22:53 +0200
committerRobin Gareus <robin@gareus.org>2019-08-27 13:22:53 +0200
commit37caa11b52b05e0222e0d1b77ba82fd316e301d3 (patch)
treeb4a3d0593f96ae5561338f7e8549420c0bdf9b47 /libs/ardour/ardour/plugin_manager.h
parent5a7659fbdb4d1f3208543053bed41101e981eacd (diff)
NO-OP: whitespace
Diffstat (limited to 'libs/ardour/ardour/plugin_manager.h')
-rw-r--r--libs/ardour/ardour/plugin_manager.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/libs/ardour/ardour/plugin_manager.h b/libs/ardour/ardour/plugin_manager.h
index c52bcbd35e..4cbf12c8e0 100644
--- a/libs/ardour/ardour/plugin_manager.h
+++ b/libs/ardour/ardour/plugin_manager.h
@@ -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;