]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tag.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / tag.cpp
diff --git a/source/tag.cpp b/source/tag.cpp
deleted file mode 100644 (file)
index c8041e0..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "tag.h"
-
-namespace Msp {
-namespace GL {
-
-Tag::Tag(const char *s):
-       id(0)
-{
-       for(const char *i=s; *i; ++i)
-               id=id*id+*i;
-}
-
-Tag::Tag(const std::string &s):
-       id(0)
-{
-       for(std::string::const_iterator i=s.begin(); i!=s.end(); ++i)
-               id=id*id+*i;
-}
-
-} // namespace GL
-} // namespace Msp