We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PowerUtils
1 parent 40f9f51 commit 2e82782Copy full SHA for 2e82782
1 file changed
include/RE/P/PowerUtils.h
@@ -51,18 +51,18 @@ namespace RE
51
};
52
static_assert(sizeof(TraverseConnectionsOptions) == 0x8);
53
54
- bool ItemIsPowerConnection(const TESObjectREFR* refr)
+ inline bool ItemIsPowerConnection(const TESObjectREFR* a_refr)
55
{
56
using func_t = decltype(&PowerUtils::ItemIsPowerConnection);
57
static REL::Relocation<func_t> func{ ID::PowerUtils::ItemIsPowerConnection };
58
- return func(refr);
+ return func(a_refr);
59
}
60
61
- bool ItemIsPowerReceiver(const TESObjectREFR* refr)
+ inline bool ItemIsPowerReceiver(const TESObjectREFR* a_refr)
62
63
using func_t = decltype(&PowerUtils::ItemIsPowerReceiver);
64
static REL::Relocation<func_t> func{ ID::PowerUtils::ItemIsPowerReceiver };
65
66
67
68
0 commit comments