diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-04-14 02:16:42 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-04-14 04:05:07 -0700 |
commit | 61f7e7716c6743b16051d8c3ea4cea3b27d0197b (patch) | |
tree | 61b486a606cb2e3bac66b274fed8c75dbfad1d0a /Alc/backends/base.h | |
parent | 7f526780994f44793fe56a426c01fcebfb64a75a (diff) |
Remove the backend factory deinit method
It was never actually called anywhere, and there's no safe place where it can
be called. It's probably better to let the individual backends worry about
cleaning themselves up anyway.
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index 2498bcd2..7a9232a6 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -67,7 +67,6 @@ enum class DevProbe { struct BackendFactory { virtual bool init() = 0; - virtual void deinit() { } virtual bool querySupport(BackendType type) = 0; |