0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Merge branch 'release/0.47'

This commit is contained in:
rbock 2017-03-16 21:34:56 +01:00
commit be50e15116

View File

@ -50,7 +50,7 @@ namespace sqlpp
if (text) if (text)
this->_value.assign(text, len); this->_value.assign(text, len);
else else
this->_value.assign("", 0); this->_value.assign("");
this->_is_null = (text == nullptr); this->_is_null = (text == nullptr);
} }
@ -61,7 +61,7 @@ namespace sqlpp
if (text) if (text)
this->_value.assign(text, len); this->_value.assign(text, len);
else else
this->_value.assign("", 0); this->_value.assign("");
this->_is_null = (text == nullptr); this->_is_null = (text == nullptr);
} }
}; };