aboutsummaryrefslogtreecommitdiff
path: root/include/parser
diff options
context:
space:
mode:
Diffstat (limited to 'include/parser')
-rw-r--r--include/parser/ast_node.hpp (renamed from include/parser/ast_node.h)2
-rw-r--r--include/parser/node_type.hpp (renamed from include/parser/node_type.h)0
-rw-r--r--include/parser/parser.hpp (renamed from include/parser/parser.h)4
3 files changed, 3 insertions, 3 deletions
diff --git a/include/parser/ast_node.h b/include/parser/ast_node.hpp
index 710054d..6539cf6 100644
--- a/include/parser/ast_node.h
+++ b/include/parser/ast_node.hpp
@@ -1,7 +1,7 @@
#ifndef AST_NODE_H
#define AST_NODE_H
-#include "parser/node_type.h"
+#include "node_type.hpp"
#include <string>
#include <vector>
diff --git a/include/parser/node_type.h b/include/parser/node_type.hpp
index 1766b19..1766b19 100644
--- a/include/parser/node_type.h
+++ b/include/parser/node_type.hpp
diff --git a/include/parser/parser.h b/include/parser/parser.hpp
index 3955e2e..438b8fe 100644
--- a/include/parser/parser.h
+++ b/include/parser/parser.hpp
@@ -1,8 +1,8 @@
#ifndef PARSER_H
#define PARSER_H
-#include "lexer/token.h"
-#include "parser/ast_node.h"
+#include "lexer/token.hpp"
+#include "parser/ast_node.hpp"
#include <vector>