mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 05:19:06 +08:00
fe6e4b711f
* [oatpp] update to 1.2.5 * add version files * update oatcpp libs to 1.2.5 * add version files * use version instead of version string * add version files * update hashes * add version files * fix windows build * add version files * fix windows build * add version files
14 lines
574 B
Diff
14 lines
574 B
Diff
diff --git a/src/oatpp-postgresql/mapping/Serializer.hpp b/src/oatpp-postgresql/mapping/Serializer.hpp
|
|
index af76701..615d11b 100644
|
|
--- a/src/oatpp-postgresql/mapping/Serializer.hpp
|
|
+++ b/src/oatpp-postgresql/mapping/Serializer.hpp
|
|
@@ -201,7 +201,7 @@ private:
|
|
|
|
outData.oid = _this->getArrayTypeOid(itemType);
|
|
outData.dataSize = stream.getCurrentPosition();
|
|
- outData.dataBuffer.template reset(new char[outData.dataSize]);
|
|
+ outData.dataBuffer.reset(new char[outData.dataSize]);
|
|
outData.data = outData.dataBuffer.get();
|
|
outData.dataFormat = 1;
|
|
|