diff options
author | Chris Robinson <[email protected]> | 2019-03-19 15:41:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-03-19 15:56:30 -0700 |
commit | 90465e9124babdbb806aebbdd1935ee59950e644 (patch) | |
tree | fd47912d91d006484d95f75dd832eacae4d59d16 /OpenAL32 | |
parent | cf6545ebb254aecec34703616d662741c4115c7d (diff) |
Use a sorted vector for devices instead of a linked list
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
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; |