aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/coreaudio.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-29 02:16:16 -0800
committerChris Robinson <[email protected]>2018-12-29 02:16:16 -0800
commit71a4d6db6f88cbb735cd959b3dd16d83a27474cf (patch)
tree4aff47e22dc5c8486c7229e23848edb34cc11ada /Alc/backends/coreaudio.cpp
parent3c637d5fd70e7bdb5dfc79c515359cba3eb0c9af (diff)
Return a unique_ptr for the backend
Diffstat (limited to 'Alc/backends/coreaudio.cpp')
-rw-r--r--Alc/backends/coreaudio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/backends/coreaudio.cpp b/Alc/backends/coreaudio.cpp
index f4010631..2caa0852 100644
--- a/Alc/backends/coreaudio.cpp
+++ b/Alc/backends/coreaudio.cpp
@@ -703,11 +703,11 @@ void CoreAudioBackendFactory::probe(DevProbe type, std::string *outnames)
}
}
-BackendBase *CoreAudioBackendFactory::createBackend(ALCdevice *device, BackendType type)
+BackendPtr CoreAudioBackendFactory::createBackend(ALCdevice *device, BackendType type)
{
if(type == BackendType::Playback)
- return new CoreAudioPlayback{device};
+ return BackendPtr{new CoreAudioPlayback{device}};
if(type == BackendType::Capture)
- return new CoreAudioCapture{device};
+ return BackendPtr{new CoreAudioCapture{device}};
return nullptr;
}