summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
-rw-r--r--src/parser/symbol_table.h7
3 files changed, 6 insertions, 5 deletions
diff --git a/configure b/configure
index bd7b74dce..bc1297ee5 100755
--- a/configure
+++ b/configure
@@ -16443,7 +16443,7 @@ if test "$enable_static" = yes; then BUILDING_STATIC=1; fi
CPPFLAGS="${CPPFLAGS:+$CPPFLAGS }$CVC4CPPFLAGS"
-CXXFLAGS="${CXXFLAGS:+$CXXFLAGS }$CVC4CXXFLAGS"
+CXXFLAGS="${CXXFLAGS:+$CXXFLAGS }$CVC4CXXFLAGS -Wno-deprecated"
LDFLAGS="${LDFLAGS:+$LDFLAGS }$CVC4LDFLAGS"
# mk_include
diff --git a/configure.ac b/configure.ac
index 159f32a4e..6ed38f860 100644
--- a/configure.ac
+++ b/configure.ac
@@ -402,7 +402,7 @@ AC_SUBST(CVC4_LIBRARY_VERSION)
AC_SUBST(CVC4_PARSER_LIBRARY_VERSION)
CPPFLAGS="${CPPFLAGS:+$CPPFLAGS }$CVC4CPPFLAGS"
-CXXFLAGS="${CXXFLAGS:+$CXXFLAGS }$CVC4CXXFLAGS"
+CXXFLAGS="${CXXFLAGS:+$CXXFLAGS }$CVC4CXXFLAGS -Wno-deprecated"
LDFLAGS="${LDFLAGS:+$LDFLAGS }$CVC4LDFLAGS"
# mk_include
diff --git a/src/parser/symbol_table.h b/src/parser/symbol_table.h
index 7dc3783a5..e4aec930e 100644
--- a/src/parser/symbol_table.h
+++ b/src/parser/symbol_table.h
@@ -18,16 +18,17 @@
#include <string>
#include <stack>
+
#include <ext/hash_map>
namespace __gnu_cxx {
template<>
struct hash<std::string> {
size_t operator()(const std::string& str) const {
- return hash<const char*> ()(str.c_str());
+ return hash<const char*>()(str.c_str());
}
};
-}
+}/* __gnu_cxx namespace */
namespace CVC4 {
namespace parser {
@@ -41,7 +42,7 @@ class SymbolTable {
private:
/** The name to expression bindings */
- typedef __gnu_cxx ::hash_map<std::string, std::stack<ObjectType> >
+ typedef __gnu_cxx::hash_map<std::string, std::stack<ObjectType> >
LookupTable;
/** The table iterator */
typedef typename LookupTable::iterator table_iterator;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback