mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
minor performance improvement, better workaround for clang issue with handle property
This commit is contained in:
@@ -118,7 +118,7 @@ bool Extractor::extract(std::size_t pos, std::string& val)
|
||||
if (!pBuf)
|
||||
val.clear();
|
||||
else
|
||||
val = std::string(pBuf);
|
||||
val.assign(pBuf);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user