summaryrefslogtreecommitdiff
path: root/src/expr/declaration_scope.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/expr/declaration_scope.h
parent738114852c81e7203fda105d5386dc26187fcb87 (diff)
remove/shuffle some #include dependencies; fix some documentation; apply coding standards
Diffstat (limited to 'src/expr/declaration_scope.h')
-rw-r--r--src/expr/declaration_scope.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/expr/declaration_scope.h b/src/expr/declaration_scope.h
index 83462c355..74869bae7 100644
--- a/src/expr/declaration_scope.h
+++ b/src/expr/declaration_scope.h
@@ -16,14 +16,14 @@
** Convenience class for scoping variable and type declarations.
**/
-#ifndef DECLARATION_SCOPE_H_
-#define DECLARATION_SCOPE_H_
+#ifndef DECLARATION_SCOPE_H
+#define DECLARATION_SCOPE_H
+
+#include <ext/hash_map>
#include "expr/expr.h"
#include "util/hash.h"
-#include <ext/hash_map>
-
namespace CVC4 {
class Type;
@@ -122,8 +122,8 @@ public:
/** Push a scope level. */
void pushScope() throw ();
-};
+};/* class DeclarationScope */
-} // namespace CVC4
+}/* namespace CVC4 */
-#endif /* DECLARATION_SCOPE_H_ */
+#endif /* DECLARATION_SCOPE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback