diff options
author | Chris Robinson <[email protected]> | 2018-11-24 16:58:49 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-24 16:58:49 -0800 |
commit | 9e10f632c7a5d66b0f896753e197970eec3ab7cf (patch) | |
tree | e8370fd4a8ebffa3fc110aaffe4aab218ac284ec /Alc/alconfig.cpp | |
parent | 16a60dc371254ba4936f4f5c13c32d060b9911ac (diff) |
Replace remaining uses of std::vector with al::vector
Which uses a custom allocator that uses our allocation functions.
Diffstat (limited to 'Alc/alconfig.cpp')
-rw-r--r-- | Alc/alconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alconfig.cpp b/Alc/alconfig.cpp index 73ea0458..a6304ce7 100644 --- a/Alc/alconfig.cpp +++ b/Alc/alconfig.cpp @@ -59,7 +59,7 @@ struct ConfigEntry { : key{std::forward<T0>(key_)}, value{std::forward<T1>(val_)} { } }; -std::vector<ConfigEntry> ConfOpts; +al::vector<ConfigEntry> ConfOpts; std::string &lstrip(std::string &line) |