From ad01b1bbd0c7d868e9372e3b54ae2ee52edc9dc3 Mon Sep 17 00:00:00 2001 From: Michael Gerhold Date: Thu, 16 Nov 2023 16:11:29 +0100 Subject: [PATCH] fixed another wrong path separator in an include --- src/values/function.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/values/function.hpp b/src/values/function.hpp index 1a5d60b..116fbdb 100644 --- a/src/values/function.hpp +++ b/src/values/function.hpp @@ -1,7 +1,7 @@ #pragma once #include "../scope.hpp" -#include "..\statements\function_definition.hpp" +#include "../statements/function_definition.hpp" #include "value.hpp" namespace statements {