Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion include/graphqlservice/GraphQLParse.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ constexpr size_t c_defaultDepthLimit = 25;

} // namespace peg

[[nodiscard("unnecessary parse")]] GRAPHQLPEG_EXPORT peg::ast operator"" _graphql(
[[nodiscard("unnecessary parse")]] GRAPHQLPEG_EXPORT peg::ast operator""_graphql(
const char* text, size_t size);

} // namespace graphql
Expand Down
2 changes: 1 addition & 1 deletion src/SyntaxTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ ast parseFile(std::string_view filename, size_t depthLimit)

} // namespace peg

peg::ast operator"" _graphql(const char* text, size_t size)
peg::ast operator""_graphql(const char* text, size_t size)
{
peg::ast result { std::make_shared<peg::ast_input>(
peg::ast_input { peg::ast_string_view { { text, size } } }),
Expand Down
Loading