Skip to content

Commit 3f1efc7

Browse files
committed
Fix JSONResponse.h missed in regex replace
1 parent 68d44a7 commit 3f1efc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/graphqlservice/JSONResponse.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
namespace graphql::response {
2424

25-
JSONRESPONSE_EXPORT [[nodiscard("unnecessary conversion")]] std::string toJSON(Value&& response);
25+
[[nodiscard("unnecessary conversion")]] JSONRESPONSE_EXPORT std::string toJSON(Value&& response);
2626

27-
JSONRESPONSE_EXPORT [[nodiscard("unnecessary conversion")]] Value parseJSON(
27+
[[nodiscard("unnecessary conversion")]] JSONRESPONSE_EXPORT Value parseJSON(
2828
const std::string& json);
2929

3030
} // namespace graphql::response

0 commit comments

Comments
 (0)