aboutsummaryrefslogtreecommitdiff
path: root/include/parser
diff options
context:
space:
mode:
authorCori Barker <coribarker2@gmail.com>2026-02-09 11:59:14 +0000
committerCori Barker <coribarker2@gmail.com>2026-02-09 11:59:14 +0000
commitb3f83360282bfe327c0ccbeecab706e0e7d2c050 (patch)
tree1ab29e9ebbf3d3f2fb66f59cbbc687451f8da62e /include/parser
parent26738e6c932038ea309a5dbaa9e941fc1ce144b8 (diff)
Changed .h to .hpp
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>