summaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h
index 4dfd591c..5971535c 100644
--- a/src/value.h
+++ b/src/value.h
@@ -993,6 +993,10 @@ inline string value_context(const value_t& val) {
return buf.str();
}
+inline value_t scope_value(scope_t * val) {
+ return value_t(val);
+}
+
template <typename T>
inline value_t& add_or_set_value(value_t& lhs, const T& rhs) {
if (lhs.is_null())