-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincludes.patch
66 lines (52 loc) · 1.69 KB
/
includes.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
diff --git 1/internal/c/GraphQLAst.cpp 2/internal/c/GraphQLAst.cpp
index 3996c9a..cf39d4b 100644
--- 1/internal/c/GraphQLAst.cpp
+++ 2/internal/c/GraphQLAst.cpp
@@ -8,8 +8,8 @@
*/
/** @generated */
-#include "GraphQLAst.h"
-#include "../Ast.h"
+#include "c/GraphQLAst.h"
+#include "Ast.h"
using namespace facebook::graphql::ast;
diff --git a/internal/c/GraphQLAstNode.cpp b/internal/c/GraphQLAstNode.cpp
index a7947b3..9eb2f17 100644
--- a/internal/c/GraphQLAstNode.cpp
+++ b/internal/c/GraphQLAstNode.cpp
@@ -7,8 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
-#include "GraphQLAstNode.h"
-#include "../AstNode.h"
+#include "c/GraphQLAstNode.h"
+#include "AstNode.h"
using facebook::graphql::ast::Node;
diff --git a/internal/c/GraphQLParser.cpp b/internal/c/GraphQLParser.cpp
index 871a5f9..5f8aa5a 100644
--- a/internal/c/GraphQLParser.cpp
+++ b/internal/c/GraphQLParser.cpp
@@ -7,9 +7,9 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
+#include "c/GraphQLParser.h"
#include "GraphQLParser.h"
-#include "../GraphQLParser.h"
-#include "../AstNode.h"
+#include "AstNode.h"
#include <cstdlib>
diff --git 1/internal/c/GraphQLAstToJSON.cpp 2/internal/c/GraphQLAstToJSON.cpp
index ec42ae5..fe1984e 100644
--- 1/internal/c/GraphQLAstToJSON.cpp
+++ 2/internal/c/GraphQLAstToJSON.cpp
@@ -7,12 +7,12 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
-#include "GraphQLAstToJSON.h"
+#include "c/GraphQLAstToJSON.h"
#include <string.h>
-#include "../JsonVisitor.h"
-#include "../AstNode.h"
+#include "JsonVisitor.h"
+#include "AstNode.h"
const char *graphql_ast_to_json(const struct GraphQLAstNode *node)