aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-03-11 17:04:38 -0800
committerChris Robinson <[email protected]>2023-03-11 17:04:38 -0800
commit167feb35c6c3c8cee494fd4cc642dd0c5446228f (patch)
tree5dfdc83b084f67af8eeca65fe24dbe14dbc5a185
parent86d4a77e62857205586caf95580980f29e06eb9f (diff)
Remove an unused function
-rw-r--r--al/eax/effect.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/al/eax/effect.h b/al/eax/effect.h
index c90ccbe6..a0b4e71b 100644
--- a/al/eax/effect.h
+++ b/al/eax/effect.h
@@ -146,14 +146,6 @@ struct EaxCommitter {
property = value;
}
- template<typename TValidator, typename TDeferrer, typename TProperties, typename TProperty>
- static void defer(const EaxCall& call, TProperties& properties, TProperty&)
- {
- const auto& value = call.get_value<Exception, const TProperty>();
- TValidator{}(value);
- TDeferrer{}(properties, value);
- }
-
[[noreturn]] static void fail(const char *message);
[[noreturn]] static void fail_unknown_property_id()
{ fail(EaxEffectErrorMessages::unknown_property_id()); }