mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
Appease MSVC
This commit is contained in:
parent
a542a09ab2
commit
c0853f7240
@ -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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user