partly working mac build settings from last update
[feisty_meow.git] / nucleus / tools / clam_tools / value_tagger.cpp
index 9fb6c780b7d0c42e55d97e7daed1e260e563e248..d90dac3e809e3e4547feaa9f26aa1ba2bc32e2f8 100644 (file)
@@ -166,6 +166,8 @@ public:
   simple_sorter(int index = 0, int value = 0) : _index(index), _value(value) {}
   bool operator < (const simple_sorter &to_compare) const
     { return _value < to_compare._value; }
+  bool operator > (const simple_sorter &to_compare) const
+    { return _value > to_compare._value; }
   bool operator == (const simple_sorter &to_compare) const
     { return _value == to_compare._value; }
 };