summaryrefslogtreecommitdiff
path: root/src/util/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/hash.h')
-rw-r--r--src/util/hash.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/hash.h b/src/util/hash.h
index 73c793951..2ce2d2941 100644
--- a/src/util/hash.h
+++ b/src/util/hash.h
@@ -17,8 +17,8 @@
** \todo document this file
**/
-#ifndef __CVC4__HASH_H_
-#define __CVC4__HASH_H_
+#ifndef __CVC4__HASH_H
+#define __CVC4__HASH_H
#include <ext/hash_map>
namespace std { using namespace __gnu_cxx; }
@@ -29,8 +29,8 @@ struct StringHashFunction {
size_t operator()(const std::string& str) const {
return std::hash<const char*>()(str.c_str());
}
-};
+};/* struct StringHashFunction */
-}
+}/* CVC4 namespace */
-#endif /* __CVC4__HASH_H_ */
+#endif /* __CVC4__HASH_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback