Code

now that selection description includes style (filtered, clipped), we need to update...
[inkscape.git] / src / streq.h
index c790db9e89685991528c36d6dd4ea0e06e98f1ef..06f78e1e5584e6c782714e5b341d652f33fbbe1b 100644 (file)
@@ -11,6 +11,12 @@ streq(char const *a, char const *b)
     return std::strcmp(a, b) == 0;
 }
 
+struct streq_rel {
+    bool operator()(char const *a, char const *b) const
+    {
+        return (std::strcmp(a, b) == 0);
+    }
+};
 
 #endif /* !INKSCAPE_STREQ_H */