Skip to content

Fix DLL export attribute order for clang on Windows #292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missed method in regex search/replace
  • Loading branch information
wravery committed Jun 12, 2023
commit f4ec887acc53758b51baabb42bc1f3791dfef5a8
4 changes: 2 additions & 2 deletions include/graphqlservice/GraphQLService.h
Original file line number Diff line number Diff line change
Expand Up @@ -1494,8 +1494,8 @@ class [[nodiscard("unnecessary construction")]] Request
[[nodiscard("unnecessary call")]] GRAPHQLSERVICE_EXPORT std::list<schema_error> validate(
peg::ast& query) const;

GRAPHQLSERVICE_EXPORT
[[nodiscard("unnecessary call")]] std::pair<std::string_view, const peg::ast_node*>
[[nodiscard("unnecessary call")]] GRAPHQLSERVICE_EXPORT std::pair<std::string_view,
const peg::ast_node*>
findOperationDefinition(peg::ast& query, std::string_view operationName) const;

[[nodiscard("unnecessary call")]] GRAPHQLSERVICE_EXPORT response::AwaitableValue resolve(
Expand Down