diff options
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.h b/src/value.h index f6194c86..b40b9d28 100644 --- a/src/value.h +++ b/src/value.h @@ -934,7 +934,7 @@ public: #define NULL_VALUE (value_t()) -inline value_t string_value(const string& str) { +inline value_t string_value(const string& str = "") { return value_t(str, true); } |