aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-07-13 05:28:42 -0700
committerChris Robinson <[email protected]>2022-07-13 05:28:42 -0700
commit07c2e786f5959f15c50f380f347d345e59218af2 (patch)
tree45bc1225ebda0fc6dbc355cc3e66565f673c363b /al
parentc843efd3225e53317d955dfe3550d2669f11639e (diff)
Make a member function static
Diffstat (limited to 'al')
-rw-r--r--al/auxeffectslot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.h b/al/auxeffectslot.h
index 8d8b187e..df760117 100644
--- a/al/auxeffectslot.h
+++ b/al/auxeffectslot.h
@@ -256,7 +256,7 @@ private:
// sets a dirty flag only if the new value differs form the old one,
// and assigns the new value.
template<typename TValidator, EaxDirtyFlags TDirtyBit, typename TProperties>
- void eax_fx_slot_set(const EaxCall& call, TProperties& dst, EaxDirtyFlags& dirty_flags)
+ static void eax_fx_slot_set(const EaxCall& call, TProperties& dst, EaxDirtyFlags& dirty_flags)
{
const auto& src = call.get_value<Exception, const TProperties>();
TValidator{}(src);