summaryrefslogtreecommitdiffstats
path: root/edify/include/edify/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'edify/include/edify/expr.h')
-rw-r--r--edify/include/edify/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/edify/include/edify/expr.h b/edify/include/edify/expr.h
index cd9c70120..3ddf7f5fe 100644
--- a/edify/include/edify/expr.h
+++ b/edify/include/edify/expr.h
@@ -60,7 +60,7 @@ struct Value {
BLOB = 2,
};
- Value(Type type, const std::string& str) : type(type), data(str) {}
+ Value(Type type, std::string str) : type(type), data(std::move(str)) {}
Type type;
std::string data;