mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-04 04:00:39 -06:00
Appease MSVC
This commit is contained in:
@@ -50,7 +50,7 @@ namespace sqlpp
|
||||
if (text)
|
||||
this->_value.assign(text, len);
|
||||
else
|
||||
this->_value.assign("", 0);
|
||||
this->_value.assign("");
|
||||
this->_is_null = (text == nullptr);
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ namespace sqlpp
|
||||
if (text)
|
||||
this->_value.assign(text, len);
|
||||
else
|
||||
this->_value.assign("", 0);
|
||||
this->_value.assign("");
|
||||
this->_is_null = (text == nullptr);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user