diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-08-17 02:09:02 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-08-17 02:09:02 -0400 |
| commit | 97ffb08a42fc1cb8d58c875b289ff840bcfea1eb (patch) | |
| tree | d56bb3ab660e762fc09dff6340027f8fa725c2f4 /Source/Core/AudioCommon/aldlist.cpp | |
| parent | 6ee2267b2d3068bea467a6d5dfe1eacd8050d7de (diff) | |
| parent | 4759510f70c0b9b66ff4846790f1f78a80301caa (diff) | |
Merge pull request #767 from lioncash/namespaces
Get rid of instances of "using namespace std;" in the project
Diffstat (limited to 'Source/Core/AudioCommon/aldlist.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/aldlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/aldlist.cpp b/Source/Core/AudioCommon/aldlist.cpp index 6e506d57c2..a849aeba68 100644 --- a/Source/Core/AudioCommon/aldlist.cpp +++ b/Source/Core/AudioCommon/aldlist.cpp @@ -86,7 +86,7 @@ ALDeviceList::ALDeviceList() alcGetIntegerv(device, ALC_MAJOR_VERSION, sizeof(s32), &ALDeviceInfo.iMajorVersion); alcGetIntegerv(device, ALC_MINOR_VERSION, sizeof(s32), &ALDeviceInfo.iMinorVersion); - ALDeviceInfo.pvstrExtensions = new vector<string>; + ALDeviceInfo.pvstrExtensions = new std::vector<std::string>; // Check for ALC Extensions if (alcIsExtensionPresent(device, "ALC_EXT_CAPTURE") == AL_TRUE) |
