Skip to content

Commit 5327fed

Browse files
committed
fix windows build
1 parent f3009b8 commit 5327fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oatpp-postgresql/mapping/Serializer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class Serializer {
201201

202202
outData.oid = _this->getArrayTypeOid(itemType);
203203
outData.dataSize = stream.getCurrentPosition();
204-
outData.dataBuffer.template reset(new char[outData.dataSize]);
204+
outData.dataBuffer.reset(new char[outData.dataSize]);
205205
outData.data = outData.dataBuffer.get();
206206
outData.dataFormat = 1;
207207

0 commit comments

Comments
 (0)