summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorLuke Street <luke@street.dev>2026-02-28 13:11:00 -0700
committerGitHub <noreply@github.com>2026-02-28 12:11:00 -0800
commitc900a043b89786d5e594ec883d9acd92e0db6bc7 (patch)
tree72aa155ca8fcb6d1234ccec7a527fcf02745d6ac /include/SSystem
parentd017a3cd36dacdcbd6a62640a85b8715540d82e5 (diff)
Some GCC compilation fixes (#3114)
* Fix 6-byte multichar literals * Add `struct` to `e_ga_class::ga_s` * Fix remaining wrong forward declares (struct/class) * Replace `#include <string>` with `#include <cstring>` * Guard FLT_EPSILON define to prevent redefinition * Add missing `#include <cstring>` for direct cstring function usage
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_m2d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SSystem/SComponent/c_m2d.h b/include/SSystem/SComponent/c_m2d.h
index f6fe537a76..482dcab0e3 100644
--- a/include/SSystem/SComponent/c_m2d.h
+++ b/include/SSystem/SComponent/c_m2d.h
@@ -2,7 +2,7 @@
#define C_M2D_H
-struct cM2dGCir;
+class cM2dGCir;
void cM2d_CrossCirLin(cM2dGCir&, float, float, float, float, float*, float*);