summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-06-19 11:11:27 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-06-19 11:11:27 -0400
commit28b20dc558e00d8111a289d31da83270fa581a03 (patch)
tree3d90d7aa92cb4a92824ee5a8732ec184c44dddf5 /src/parser/parser.h
parent010ad47b7b3e1909f31525fc45be2c27c1b72e45 (diff)
Fix to the "include" extended feature of the SMT-LIB parser
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index 883f1f12b..91566f5f6 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -258,8 +258,8 @@ public:
bool strictModeEnabled() { return d_strictMode; }
- bool allowIncludeFile() { d_canIncludeFile = true; }
- bool disallowIncludeFile() { d_canIncludeFile = false; }
+ void allowIncludeFile() { d_canIncludeFile = true; }
+ void disallowIncludeFile() { d_canIncludeFile = false; }
bool canIncludeFile() const { return d_canIncludeFile; }
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback