We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cffb77 commit 4d1ec3aCopy full SHA for 4d1ec3a
CMakeLists.txt
@@ -1,7 +1,7 @@
1
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
2
3
# Set the project version and language
4
-project(Ghostship VERSION 1.0.0 LANGUAGES C CXX ASM)
+project(Ghostship VERSION 1.0.1 LANGUAGES C CXX ASM)
5
include(FetchContent)
6
7
include(cmake/ghostship-cvars.cmake)
src/port/game/GeoLayoutParser.cpp
@@ -38,9 +38,9 @@ struct GraphNodeEntry {
38
GraphNodeFunc function;
39
};
40
41
-#define FUNC(f) \
42
- GraphNodeEntry { \
43
- #f, reinterpret_cast<GraphNodeFunc>(f) \
+#define FUNC(f) \
+ GraphNodeEntry { \
+#f, reinterpret_cast < GraphNodeFunc>(f) \
44
}
45
46
std::unordered_map<uint32_t, GraphNodeEntry> mUSFunctionTable = {
0 commit comments