aboutsummaryrefslogtreecommitdiff
path: root/src/semantic/scope.cpp
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 /src/semantic/scope.cpp
parent26738e6c932038ea309a5dbaa9e941fc1ce144b8 (diff)
Changed .h to .hpp
Diffstat (limited to 'src/semantic/scope.cpp')
-rw-r--r--src/semantic/scope.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/semantic/scope.cpp b/src/semantic/scope.cpp
index 75c4e61..ba5aa41 100644
--- a/src/semantic/scope.cpp
+++ b/src/semantic/scope.cpp
@@ -1,4 +1,4 @@
-#include "semantic/scope.h"
+#include "semantic/scope.hpp"
Scope::Scope(std::string name, int level, std::unique_ptr<Scope> parent) : scope_name(name), scope_level(level), parent_scope(parent) {}