Skip to content

Commit b5c3f94

Browse files
committed
Switch to push_back for AppleClang
1 parent 817c183 commit b5c3f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RequestLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ void RequestLoader::findOperation()
727727

728728
if (!_requestOptions.operationName || name == *_requestOptions.operationName)
729729
{
730-
_operations.emplace_back(&operationDefinition, name, operationType);
730+
_operations.push_back(Operation { &operationDefinition, name, operationType });
731731

732732
if (_requestOptions.operationName)
733733
{

0 commit comments

Comments
 (0)