summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2019-06-12 09:07:00 -0700
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-06-12 11:07:00 -0500
commitc83ce8f341f88bbffcae8fd2bfbed5c33abf4f66 (patch)
tree913aef18511db45418f26de2ee0f3f892584fcfa /src/parser/parser.h
parent9925a54ce86e9b0101563c0ace1b973144490528 (diff)
Refactor parser to define fewer tokens for symbols (#2936)
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index 826d460b2..fcc37d5d3 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -137,9 +137,6 @@ inline std::ostream& operator<<(std::ostream& out, SymbolType type) {
class CVC4_PUBLIC Parser {
friend class ParserBuilder;
private:
- /** The API Solver object. */
- api::Solver* d_solver;
-
/** The resource manager associated with this expr manager */
ResourceManager* d_resourceManager;
@@ -244,6 +241,9 @@ private:
Expr getSymbol(const std::string& var_name, SymbolType type);
protected:
+ /** The API Solver object. */
+ api::Solver* d_solver;
+
/**
* Create a parser state.
*
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback