Skip to content

Commit 254a614

Browse files
committed
Fix DLL exports
1 parent 4752226 commit 254a614

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

include/graphqlservice/GraphQLTree.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#ifndef GRAPHQLTREE_H
77
#define GRAPHQLTREE_H
88

9+
#include "graphqlservice/GraphQLParse.h"
10+
911
#define TAO_PEGTL_NAMESPACE tao::graphqlpeg
1012

1113
#include <tao/pegtl.hpp>
@@ -22,7 +24,7 @@ using namespace tao::graphqlpeg;
2224

2325
struct ast_node : parse_tree::basic_node<ast_node>
2426
{
25-
std::string_view unescaped_view() const;
27+
GRAPHQLPEG_EXPORT std::string_view unescaped_view() const;
2628

2729
std::variant<std::string_view, std::string> unescaped;
2830
};

0 commit comments

Comments
 (0)