summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.am2
-rw-r--r--src/includes/parserincludes.h (renamed from src/parsers/parserincludes.h)0
-rw-r--r--src/parsers/cst/integer_cst.cpp2
-rw-r--r--src/parsers/decl/function_decl.cpp2
-rw-r--r--src/parsers/decl/parm_decl.cpp2
-rw-r--r--src/parsers/decl/result_decl.cpp2
-rw-r--r--src/parsers/decl/type_decl.cpp2
-rw-r--r--src/parsers/expr/return_expr.cpp2
-rw-r--r--src/parsers/generic.cpp3
-rw-r--r--src/parsers/identifier_node.cpp2
-rw-r--r--src/parsers/list/statement_list.cpp2
-rw-r--r--src/parsers/list/tree_list.cpp2
-rw-r--r--src/parsers/type/function_type.cpp2
-rw-r--r--src/parsers/type/integer_type.cpp2
-rw-r--r--src/parsers/type/pointer_type.cpp2
-rw-r--r--src/parsers/type/void_type.cpp2
16 files changed, 15 insertions, 16 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a2b70d4..ffae2b7 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,7 +21,6 @@ SRC = nodes/base/cst.h \
parsers/generic.cpp \
parsers/generic.h \
parsers/identifier_node.cpp \
- parsers/parserincludes.h \
parsers/base/decl.cpp \
parsers/base/decl.h \
parsers/base/expr.cpp \
@@ -41,6 +40,7 @@ SRC = nodes/base/cst.h \
parsers/type/pointer_type.cpp \
parsers/type/void_type.cpp \
includes/parserdefines.inc \
+ includes/parserincludes.h \
includes.h \
localconsts.h \
logger.cpp \
diff --git a/src/parsers/parserincludes.h b/src/includes/parserincludes.h
index ecc46a8..ecc46a8 100644
--- a/src/parsers/parserincludes.h
+++ b/src/includes/parserincludes.h
diff --git a/src/parsers/cst/integer_cst.cpp b/src/parsers/cst/integer_cst.cpp
index afe6d20..b5b3686 100644
--- a/src/parsers/cst/integer_cst.cpp
+++ b/src/parsers/cst/integer_cst.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
#include "stringutils.h"
diff --git a/src/parsers/decl/function_decl.cpp b/src/parsers/decl/function_decl.cpp
index 5428271..d7e6ecc 100644
--- a/src/parsers/decl/function_decl.cpp
+++ b/src/parsers/decl/function_decl.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(FunctionDecl);
diff --git a/src/parsers/decl/parm_decl.cpp b/src/parsers/decl/parm_decl.cpp
index 3016c61..4d305dd 100644
--- a/src/parsers/decl/parm_decl.cpp
+++ b/src/parsers/decl/parm_decl.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(ParmDecl);
diff --git a/src/parsers/decl/result_decl.cpp b/src/parsers/decl/result_decl.cpp
index ece4ce8..163e757 100644
--- a/src/parsers/decl/result_decl.cpp
+++ b/src/parsers/decl/result_decl.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(ResultDecl);
diff --git a/src/parsers/decl/type_decl.cpp b/src/parsers/decl/type_decl.cpp
index 86af6ed..f220e97 100644
--- a/src/parsers/decl/type_decl.cpp
+++ b/src/parsers/decl/type_decl.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(TypeDecl);
diff --git a/src/parsers/expr/return_expr.cpp b/src/parsers/expr/return_expr.cpp
index dec310e..d1102c7 100644
--- a/src/parsers/expr/return_expr.cpp
+++ b/src/parsers/expr/return_expr.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(ReturnExpr);
diff --git a/src/parsers/generic.cpp b/src/parsers/generic.cpp
index 1d79bf9..64b8e27 100644
--- a/src/parsers/generic.cpp
+++ b/src/parsers/generic.cpp
@@ -34,8 +34,7 @@
#include "nodes/type/pointer_type.h"
#include "nodes/type/void_type.h"
-#include "parsers/parserincludes.h"
-
+#include "includes/parserincludes.h"
#include "includes/parserdefines.inc"
#include "localconsts.h"
diff --git a/src/parsers/identifier_node.cpp b/src/parsers/identifier_node.cpp
index 9a06c24..05d25b5 100644
--- a/src/parsers/identifier_node.cpp
+++ b/src/parsers/identifier_node.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(Identifier);
diff --git a/src/parsers/list/statement_list.cpp b/src/parsers/list/statement_list.cpp
index 3209d50..9d9da5a 100644
--- a/src/parsers/list/statement_list.cpp
+++ b/src/parsers/list/statement_list.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
#include "tree-iterator.h"
diff --git a/src/parsers/list/tree_list.cpp b/src/parsers/list/tree_list.cpp
index aa45617..c1237f0 100644
--- a/src/parsers/list/tree_list.cpp
+++ b/src/parsers/list/tree_list.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(TreeList);
diff --git a/src/parsers/type/function_type.cpp b/src/parsers/type/function_type.cpp
index 23958e1..e2f306e 100644
--- a/src/parsers/type/function_type.cpp
+++ b/src/parsers/type/function_type.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(FunctionType);
diff --git a/src/parsers/type/integer_type.cpp b/src/parsers/type/integer_type.cpp
index a667992..3b048eb 100644
--- a/src/parsers/type/integer_type.cpp
+++ b/src/parsers/type/integer_type.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(IntegerType);
diff --git a/src/parsers/type/pointer_type.cpp b/src/parsers/type/pointer_type.cpp
index 72aff2e..7137e3e 100644
--- a/src/parsers/type/pointer_type.cpp
+++ b/src/parsers/type/pointer_type.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(PointerType);
diff --git a/src/parsers/type/void_type.cpp b/src/parsers/type/void_type.cpp
index d977283..addb686 100644
--- a/src/parsers/type/void_type.cpp
+++ b/src/parsers/type/void_type.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "parsers/parserincludes.h"
+#include "includes/parserincludes.h"
parserDefine(VoidType);