diff options
author | Chris Robinson <[email protected]> | 2022-07-05 09:27:20 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-05 09:27:44 -0700 |
commit | 74b2e3b349ac42186a6359ee766482fb4283a331 (patch) | |
tree | b37ecb1489a01d7f5ab3df015892abd749431cc6 /al | |
parent | 3ac78307ec0d6d1cfc7fa1848101faa9c0afc34f (diff) |
Remove an unused struct
And minor formatting cleanup
Diffstat (limited to 'al')
-rw-r--r-- | al/eax/utils.cpp | 3 | ||||
-rw-r--r-- | al/eax/utils.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/al/eax/utils.cpp b/al/eax/utils.cpp index 1ee7dbc7..b3ed6ca1 100644 --- a/al/eax/utils.cpp +++ b/al/eax/utils.cpp @@ -8,8 +8,7 @@ #include "core/logging.h" -void eax_log_exception( - const char* message) noexcept +void eax_log_exception(const char *message) noexcept { const auto exception_ptr = std::current_exception(); assert(exception_ptr); diff --git a/al/eax/utils.h b/al/eax/utils.h index 5a8fdd64..2960c6d7 100644 --- a/al/eax/utils.h +++ b/al/eax/utils.h @@ -11,7 +11,7 @@ struct EaxAlLowPassParam { float gain_hf; }; -void eax_log_exception(const char* message = nullptr) noexcept; +void eax_log_exception(const char *message) noexcept; template<typename TException, typename TValue> void eax_validate_range( |