summaryrefslogtreecommitdiff
path: root/src/expr/symbol_table.h
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-04-21 10:21:34 -0700
committerGitHub <noreply@github.com>2021-04-21 10:21:34 -0700
commitae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 (patch)
treea7c2ab8013f46dbea75fcd6e7da3fb83e2012b2f /src/expr/symbol_table.h
parent86aa9bc35ba9dc9a57913a2ffc71619c7657cc35 (diff)
Goodbye CVC4, hello cvc5! (#6371)
This commits changes the build system to cvc5 and removes the remaining occurrences of CVC4. It further cleans up outdated/unused scripts in contrib/.
Diffstat (limited to 'src/expr/symbol_table.h')
-rw-r--r--src/expr/symbol_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expr/symbol_table.h b/src/expr/symbol_table.h
index cd80c0eba..ddf26f9da 100644
--- a/src/expr/symbol_table.h
+++ b/src/expr/symbol_table.h
@@ -23,7 +23,7 @@
#include <vector>
#include "base/exception.h"
-#include "cvc4_export.h"
+#include "cvc5_export.h"
namespace cvc5 {
@@ -33,7 +33,7 @@ class Sort;
class Term;
} // namespace api
-class CVC4_EXPORT ScopeException : public Exception
+class CVC5_EXPORT ScopeException : public Exception
{
};
@@ -42,7 +42,7 @@ class CVC4_EXPORT ScopeException : public Exception
* nested scoping rules for declarations, with separate bindings for expressions
* and types.
*/
-class CVC4_EXPORT SymbolTable
+class CVC5_EXPORT SymbolTable
{
public:
/** Create a symbol table. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback