summaryrefslogtreecommitdiff
path: root/src/parser/tptp/tptp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/tptp/tptp.h')
-rw-r--r--src/parser/tptp/tptp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/parser/tptp/tptp.h b/src/parser/tptp/tptp.h
index 318ef7f4a..b91418bd0 100644
--- a/src/parser/tptp/tptp.h
+++ b/src/parser/tptp/tptp.h
@@ -27,7 +27,7 @@
#include "parser/parser.h"
#include "util/hash.h"
-namespace CVC5 {
+namespace cvc5 {
class Command;
@@ -218,12 +218,12 @@ namespace tptp {
* Just exists to provide the uintptr_t constructor that ANTLR
* requires.
*/
-struct myExpr : public CVC5::api::Term
+struct myExpr : public cvc5::api::Term
{
- myExpr() : CVC5::api::Term() {}
- myExpr(void*) : CVC5::api::Term() {}
- myExpr(const CVC5::api::Term& e) : CVC5::api::Term(e) {}
- myExpr(const myExpr& e) : CVC5::api::Term(e) {}
+ myExpr() : cvc5::api::Term() {}
+ myExpr(void*) : cvc5::api::Term() {}
+ myExpr(const cvc5::api::Term& e) : cvc5::api::Term(e) {}
+ myExpr(const myExpr& e) : cvc5::api::Term(e) {}
}; /* struct myExpr*/
enum NonAssoc {
@@ -238,6 +238,6 @@ enum NonAssoc {
} // namespace tptp
} // namespace parser
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__PARSER__TPTP_INPUT_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback