summaryrefslogtreecommitdiff
path: root/src/util/sexpr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/sexpr.cpp')
-rw-r--r--src/util/sexpr.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/util/sexpr.cpp b/src/util/sexpr.cpp
index eb53e34c2..9837a7045 100644
--- a/src/util/sexpr.cpp
+++ b/src/util/sexpr.cpp
@@ -149,12 +149,12 @@ SExpr::SExpr(const std::string& value) :
d_children(NULL) {
}
- /**
- * This constructs a string expression from a const char* value.
- * This cannot be removed in order to support SExpr("foo").
- * Given the other constructors this SExpr("foo") converts to bool.
- * instead of SExpr(string("foo")).
- */
+/**
+ * This constructs a string expression from a const char* value.
+ * This cannot be removed in order to support SExpr("foo").
+ * Given the other constructors this SExpr("foo") converts to bool.
+ * instead of SExpr(string("foo")).
+ */
SExpr::SExpr(const char* value) :
d_sexprType(SEXPR_STRING),
d_integerValue(0),
@@ -163,7 +163,6 @@ SExpr::SExpr(const char* value) :
d_children(NULL) {
}
-#warning "TODO: Discuss this change with Clark."
SExpr::SExpr(bool value) :
d_sexprType(SEXPR_KEYWORD),
d_integerValue(0),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback