Skip to content

Commit 63cbd0c

Browse files
authored
Merge pull request #8 from autoantwort/fix-windows-build
fix windows build
2 parents f3009b8 + 5327fed commit 63cbd0c

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)