summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-05-22 18:43:02 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2026-05-22 18:43:02 -0400
commit47e01ede220d41cf73edf76158f30ab8b2d8a5ba (patch)
treeb52b2dceb49c7c5b94c3eb91523d4c3798c0f882 /include/SSystem
parent95fac0fd639e16cbe3cc99191a25bc411fcbef99 (diff)
Fix d_a_npc_md inline usage
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_cc_d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SSystem/SComponent/c_cc_d.h b/include/SSystem/SComponent/c_cc_d.h
index 1fe678c3..0ed9dc13 100644
--- a/include/SSystem/SComponent/c_cc_d.h
+++ b/include/SSystem/SComponent/c_cc_d.h
@@ -182,7 +182,7 @@ class cCcD_SphAttr : public cCcD_ShapeAttr, public cM3dGSph {
public:
cCcD_SphAttr() {}
- inline void Set(const cCcD_SrcSphAttr& src) {
+ void Set(const cCcD_SrcSphAttr& src) {
cM3dGSph::Set(src.mSph);
}
@@ -216,7 +216,7 @@ STATIC_ASSERT(0x34 == sizeof(cCcD_SphAttr));
class cCcD_CylAttr : public cCcD_ShapeAttr, public cM3dGCyl {
public:
cCcD_CylAttr() {}
- inline void Set(const cCcD_SrcCylAttr& src) {
+ void Set(const cCcD_SrcCylAttr& src) {
cM3dGCyl::Set(src.mCyl);
}