From 61f7e7716c6743b16051d8c3ea4cea3b27d0197b Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 14 Apr 2019 02:16:42 -0700 Subject: 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. --- Alc/backends/base.h | 1 - 1 file changed, 1 deletion(-) (limited to 'Alc/backends/base.h') 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; -- cgit v1.2.3