diff options
author | Chris Robinson <[email protected]> | 2022-07-13 05:28:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-13 05:28:42 -0700 |
commit | 07c2e786f5959f15c50f380f347d345e59218af2 (patch) | |
tree | 45bc1225ebda0fc6dbc355cc3e66565f673c363b /al | |
parent | c843efd3225e53317d955dfe3550d2669f11639e (diff) |
Make a member function static
Diffstat (limited to 'al')
-rw-r--r-- | al/auxeffectslot.h | 2 |
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); |