From 6e2faa538cfacdf29e055b6c7ca6fdce3886b8da Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 29 Feb 2024 10:10:59 +0100 Subject: rename mg/Math.h -> mg/Functions.h --- bench/dijkstra.cpp | 2 +- bench/raycast.cpp | 2 +- editor/tests/path-test.cpp | 2 +- include/mg/BatchFunctions.h | 2 ++ include/mg/BatchMath.h | 2 -- include/mg/Functions.h | 2 ++ include/mg/Math.h | 2 -- src/chunk-region.cpp | 2 +- src/raycast.cpp | 2 +- test/raycast.cpp | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 include/mg/BatchFunctions.h delete mode 100644 include/mg/BatchMath.h create mode 100644 include/mg/Functions.h delete mode 100644 include/mg/Math.h diff --git a/bench/dijkstra.cpp b/bench/dijkstra.cpp index 5e74c75d..c2f43de6 100644 --- a/bench/dijkstra.cpp +++ b/bench/dijkstra.cpp @@ -5,7 +5,7 @@ #include "loader/loader.hpp" #include #include -#include +#include namespace floormat { diff --git a/bench/raycast.cpp b/bench/raycast.cpp index 0f6d617b..63f4ad4a 100644 --- a/bench/raycast.cpp +++ b/bench/raycast.cpp @@ -4,7 +4,7 @@ #include "src/wall-atlas.hpp" #include "loader/loader.hpp" #include -#include +#include namespace floormat { diff --git a/editor/tests/path-test.cpp b/editor/tests/path-test.cpp index c94fdc36..9f837128 100644 --- a/editor/tests/path-test.cpp +++ b/editor/tests/path-test.cpp @@ -8,7 +8,7 @@ #include "src/critter.hpp" #include "shaders/shader.hpp" #include "../imgui-raii.hpp" -#include +#include #include namespace floormat::tests { diff --git a/include/mg/BatchFunctions.h b/include/mg/BatchFunctions.h new file mode 100644 index 00000000..0124e922 --- /dev/null +++ b/include/mg/BatchFunctions.h @@ -0,0 +1,2 @@ +#pragma once +#include diff --git a/include/mg/BatchMath.h b/include/mg/BatchMath.h deleted file mode 100644 index 0124e922..00000000 --- a/include/mg/BatchMath.h +++ /dev/null @@ -1,2 +0,0 @@ -#pragma once -#include diff --git a/include/mg/Functions.h b/include/mg/Functions.h new file mode 100644 index 00000000..a70d392b --- /dev/null +++ b/include/mg/Functions.h @@ -0,0 +1,2 @@ +#pragma once +#include diff --git a/include/mg/Math.h b/include/mg/Math.h deleted file mode 100644 index a70d392b..00000000 --- a/include/mg/Math.h +++ /dev/null @@ -1,2 +0,0 @@ -#pragma once -#include diff --git a/src/chunk-region.cpp b/src/chunk-region.cpp index 62fee2c4..57d09ab4 100644 --- a/src/chunk-region.cpp +++ b/src/chunk-region.cpp @@ -9,7 +9,7 @@ #include #include #include -#include +#include #include namespace floormat { diff --git a/src/raycast.cpp b/src/raycast.cpp index bfc41296..06cc416e 100644 --- a/src/raycast.cpp +++ b/src/raycast.cpp @@ -8,7 +8,7 @@ #include #include #include -#include +#include #include #include diff --git a/test/raycast.cpp b/test/raycast.cpp index 3bf26cdd..5a80f1dc 100644 --- a/test/raycast.cpp +++ b/test/raycast.cpp @@ -4,7 +4,7 @@ #include "src/world.hpp" #include "loader/loader.hpp" #include "loader/wall-cell.hpp" -#include +#include namespace floormat { -- cgit v1.2.3