update OpenAL-Soft to 1.24.3.

This commit is contained in:
Sasha Szpakowski
2025-05-03 12:51:37 -03:00
parent 375c6f88cd
commit 5e4f3241ac
322 changed files with 54386 additions and 12885 deletions
+9 -2
View File
@@ -7,7 +7,7 @@
#include "dynload.h"
#ifdef HAVE_DYNLOAD
#if HAVE_DYNLOAD
#include <mutex>
@@ -63,16 +63,23 @@ inline auto HasDBus()
#else
constexpr bool HasDBus() noexcept { return true; }
#endif /* HAVE_DYNLOAD */
#endif
namespace dbus {
struct Error {
Error() { dbus_error_init(&mError); }
Error(const Error&) = delete;
Error(Error&&) = delete;
~Error() { dbus_error_free(&mError); }
void operator=(const Error&) = delete;
void operator=(Error&&) = delete;
DBusError* operator->() { return &mError; }
DBusError &get() { return mError; }
private:
DBusError mError{};
};