summaryrefslogtreecommitdiff
path: root/src/util/sexpr.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-20 13:36:12 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-20 13:36:12 +0000
commit2c7da77682998d520136249897f69ceed53d49a9 (patch)
tree42b59ab42fa08392b0d6ab7902490ea98624136d /src/util/sexpr.h
parent46c12d84290f3ed23bd0b435c6e8e5852ab1af39 (diff)
some bugfixes that come as a result of debugging some CASCADE/C stuff..
(this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/util/sexpr.h')
-rw-r--r--src/util/sexpr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/sexpr.h b/src/util/sexpr.h
index b99eda5ca..0734dec6c 100644
--- a/src/util/sexpr.h
+++ b/src/util/sexpr.h
@@ -58,11 +58,11 @@ class CVC4_PUBLIC SExpr {
public:
- class Keyword : protected std::string {
+ class CVC4_PUBLIC Keyword : protected std::string {
public:
Keyword(const std::string& s) : std::string(s) {}
const std::string& getString() const { return *this; }
- };/* class Keyword */
+ };/* class SExpr::Keyword */
SExpr() :
d_sexprType(SEXPR_STRING),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback