]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tag.cpp
Rearrange soucre files into subdirectories
[libs/gl.git] / source / tag.cpp
diff --git a/source/tag.cpp b/source/tag.cpp
deleted file mode 100644 (file)
index c5824ae..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <cstring>
-#include <msp/core/hash.h>
-#include "tag.h"
-
-namespace Msp {
-namespace GL {
-
-Tag::Tag(const char *s):
-       id((s && *s) ? hash32(s, strlen(s)) : 0)
-{ }
-
-Tag::Tag(const std::string &s):
-       id(s.empty() ? 0 : hash32(s))
-{ }
-
-} // namespace GL
-} // namespace Msp