We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4752226 commit 254a614Copy full SHA for 254a614
include/graphqlservice/GraphQLTree.h
@@ -6,6 +6,8 @@
6
#ifndef GRAPHQLTREE_H
7
#define GRAPHQLTREE_H
8
9
+#include "graphqlservice/GraphQLParse.h"
10
+
11
#define TAO_PEGTL_NAMESPACE tao::graphqlpeg
12
13
#include <tao/pegtl.hpp>
@@ -22,7 +24,7 @@ using namespace tao::graphqlpeg;
22
24
23
25
struct ast_node : parse_tree::basic_node<ast_node>
26
{
- std::string_view unescaped_view() const;
27
+ GRAPHQLPEG_EXPORT std::string_view unescaped_view() const;
28
29
std::variant<std::string_view, std::string> unescaped;
30
};
0 commit comments