]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tag.cpp
Fix various issues with constant condition elimination
[libs/gl.git] / source / tag.cpp
index c8041e0d0331c8c20fc7f78a657b39d651e5daab..c5824aec4e114d60b04c53acd00ae2b54072f7fe 100644 (file)
@@ -1,21 +1,17 @@
+#include <cstring>
+#include <msp/core/hash.h>
 #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;
-}
+       id((s && *s) ? hash32(s, strlen(s)) : 0)
+{ }
 
 Tag::Tag(const std::string &s):
-       id(0)
-{
-       for(std::string::const_iterator i=s.begin(); i!=s.end(); ++i)
-               id=id*id+*i;
-}
+       id(s.empty() ? 0 : hash32(s))
+{ }
 
 } // namespace GL
 } // namespace Msp