Skip to content

Commit

Permalink
Fix old GCC error
Browse files Browse the repository at this point in the history
  • Loading branch information
sbiscigl committed Oct 14, 2024
1 parent 4daecb7 commit 04cb4b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ namespace smithy {

const char* schemeId = nullptr;

PropertyBag virtual identityProperties() const { return {}; };
PropertyBag virtual signerProperties() const { return {}; };
EndpointParameters virtual endpointParameters() const { return {}; };
PropertyBag virtual identityProperties() const { return PropertyBag{}; };
PropertyBag virtual signerProperties() const { return PropertyBag{}; };
EndpointParameters virtual endpointParameters() const { return EndpointParameters{}; };
};
}

0 comments on commit 04cb4b1

Please sign in to comment.