summaryrefslogtreecommitdiff
path: root/include/SSVOpenHexagon/Global/Audio.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SSVOpenHexagon/Global/Audio.hpp')
-rw-r--r--include/SSVOpenHexagon/Global/Audio.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/SSVOpenHexagon/Global/Audio.hpp b/include/SSVOpenHexagon/Global/Audio.hpp
index a88d8998..fee871fc 100644
--- a/include/SSVOpenHexagon/Global/Audio.hpp
+++ b/include/SSVOpenHexagon/Global/Audio.hpp
@@ -4,8 +4,9 @@
#pragma once
+#include "SSVOpenHexagon/Utils/UniquePtr.hpp"
+
#include <string>
-#include <memory>
#include <functional>
namespace sf {
@@ -26,7 +27,7 @@ public:
private:
class AudioImpl;
- std::unique_ptr<AudioImpl> _impl;
+ Utils::UniquePtr<AudioImpl> _impl;
[[nodiscard]] const AudioImpl& impl() const noexcept;
[[nodiscard]] AudioImpl& impl() noexcept;