mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-05-12 14:18:55 -05:00
Merge tag '0.50' into develop
Maintenance release: - compile with MSVC 2017 again - remove some clang warnings - Fixed incorrect usage of string::find
This commit is contained in:
@@ -44,7 +44,7 @@ namespace sqlpp
|
||||
|
||||
static std::string escape(std::string arg)
|
||||
{
|
||||
if (arg.find('\''))
|
||||
if (arg.find('\'') != std::string::npos)
|
||||
{
|
||||
std::string retVal;
|
||||
for (const auto c : arg)
|
||||
|
||||
Reference in New Issue
Block a user