aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--expr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.cc b/expr.cc
index a629352..ad7d19e 100644
--- a/expr.cc
+++ b/expr.cc
@@ -63,7 +63,7 @@ class Literal : public Value {
}
virtual bool IsLiteral() const override { return true; }
- virtual StringPiece GetLiteralValueUnsafe() const { return s_; }
+ virtual StringPiece GetLiteralValueUnsafe() const override { return s_; }
virtual string DebugString_() const override {
return s_.as_string();