summaryrefslogtreecommitdiff
path: root/src/util/hash.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-04 04:20:19 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-04 04:20:19 +0000
commit7719416c6698cdc49b7a0d2d62b4472ef815a487 (patch)
tree472f1fd2f399224062753b5bc588b567423efa4a /src/util/hash.h
parent738114852c81e7203fda105d5386dc26187fcb87 (diff)
remove/shuffle some #include dependencies; fix some documentation; apply coding standards
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