diff options
Diffstat (limited to 'src/expr.cc')
-rw-r--r-- | src/expr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.cc b/src/expr.cc index a655edf0..ee06187a 100644 --- a/src/expr.cc +++ b/src/expr.cc @@ -41,7 +41,7 @@ expr_t::expr_t() : compiled(false) } expr_t::expr_t(const expr_t& other) - : ptr(other.ptr), str(other.str), compiled(other.compiled) + : ptr(other.ptr), str(other.str), compiled(false) { TRACE_CTOR(expr_t, "copy"); } |