Fix non-rvalue Json::Value assignment operator (should copy, not move)
diff --git a/include/json/value.h b/include/json/value.h
index f057089..2da9559 100644
--- a/include/json/value.h
+++ b/include/json/value.h
@@ -327,10 +327,7 @@
 
   /// Deep copy, then swap(other).
   /// \note Over-write existing comments. To preserve comments, use #swapPayload().
-  Value& operator=(const Value& other);
-#if JSON_HAS_RVALUE_REFERENCES
-  Value& operator=(Value&& other);
-#endif
+  Value& operator=(Value other);
 
   /// Swap everything.
   void swap(Value& other);