]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tag.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / tag.h
diff --git a/source/tag.h b/source/tag.h
deleted file mode 100644 (file)
index ac31bce..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef MSP_GL_TAG_H_
-#define MSP_GL_TAG_H_
-
-#include <string>
-
-namespace Msp {
-namespace GL {
-
-struct Tag
-{
-       unsigned id;
-
-       Tag(): id(0) { }
-       Tag(const char *);
-       Tag(const std::string &s);
-
-       bool operator<(const Tag &t) const { return id<t.id; }
-       bool operator==(const Tag &t) const { return id==t.id; }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif