summaryrefslogtreecommitdiffstats
path: root/src/eval_env.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval_env.h')
-rw-r--r--src/eval_env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval_env.h b/src/eval_env.h
index 37f7b07..ed7c2f4 100644
--- a/src/eval_env.h
+++ b/src/eval_env.h
@@ -45,7 +45,7 @@ struct EvalString {
string Evaluate(Env* env) const;
const string& unparsed() const { return unparsed_; }
- const bool empty() const { return unparsed_.empty(); }
+ bool empty() const { return unparsed_.empty(); }
string unparsed_;
enum TokenType { RAW, SPECIAL };