overload append function for R value references.
diff --git a/include/json/value.h b/include/json/value.h
index 4aefb10..6b40831 100644
--- a/include/json/value.h
+++ b/include/json/value.h
@@ -447,6 +447,10 @@
/// Equivalent to jsonvalue[jsonvalue.size()] = value;
Value& append(const Value& value);
+#ifdef JSON_HAS_RVALUE_REFERENCES
+ Value& append(Value&& value);
+#endif
+
/// Access an object value by name, create a null member if it does not exist.
/// \note Because of our implementation, keys are limited to 2^30 -1 chars.
/// Exceeding that will cause an exception.