aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-03-19 15:41:01 -0700
committerChris Robinson <[email protected]>2019-03-19 15:56:30 -0700
commit90465e9124babdbb806aebbdd1935ee59950e644 (patch)
treefd47912d91d006484d95f75dd832eacae4d59d16 /OpenAL32
parentcf6545ebb254aecec34703616d662741c4115c7d (diff)
Use a sorted vector for devices instead of a linked list
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 105cc2f5..4fefe89a 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -465,8 +465,6 @@ struct ALCdevice {
std::mutex StateLock;
std::unique_ptr<BackendBase> Backend;
- std::atomic<ALCdevice*> next{nullptr};
-
ALCdevice(DeviceType type);
ALCdevice(const ALCdevice&) = delete;