diff options
Diffstat (limited to 'Alc/effects/null.cpp')
-rw-r--r-- | Alc/effects/null.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Alc/effects/null.cpp b/Alc/effects/null.cpp index 7401fa6d..96cb3114 100644 --- a/Alc/effects/null.cpp +++ b/Alc/effects/null.cpp @@ -25,16 +25,12 @@ struct ALnullState final : public EffectState { /* This constructs the effect state. It's called when the object is first * created. */ -ALnullState::ALnullState() -{ -} +ALnullState::ALnullState() = default; /* This destructs the effect state. It's called only when the effect slot is no * longer used prior to being freed. */ -ALnullState::~ALnullState() -{ -} +ALnullState::~ALnullState() = default; /* This updates the device-dependant effect state. This is called on * initialization and any time the device parameters (eg. playback frequency, |