Add another rvalue constructor for the Value class

refs #12555
This commit is contained in:
Gunnar Beutner 2016-08-26 18:11:28 +02:00
parent dac0ff9343
commit c1a58446af
1 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,10 @@ public:
: m_Value(value)
{ }
inline Value(String&& value)
: m_Value(value)
{ }
inline Value(const char *value)
: m_Value(String(value))
{ }