]> git.llucax.com Git - software/bife/bife++.git/blobdiff - hash.h
Cleaned up the code:
[software/bife/bife++.git] / hash.h
diff --git a/hash.h b/hash.h
index 08f7adbb30bb0741dca5fc4966d704af8a5ec4be..d825bdc9f833a66f72b7b33f9d2001373d645ae7 100644 (file)
--- a/hash.h
+++ b/hash.h
@@ -6,7 +6,9 @@
 #include <string>
 #include <map>
 
-/// String hash similar to high level languages (like perl, python or php).
-typedef std::map<std::string, std::string> Hash;
+namespace bife {
+    /// String hash similar to high level languages (like perl, python or php).
+    typedef std::map<std::string, std::string> Hash;
+}
 
 #endif