diff options
author | Chris Robinson <[email protected]> | 2023-05-10 21:35:33 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-10 21:35:33 -0700 |
commit | e590afe3e4871561527deea5dc9894212e3eb7b9 (patch) | |
tree | cf90b2884c3f796df6333a209cce6dfa75f4a67d /al/eax | |
parent | d2b000c7602bcc337a4f4e5590ef65c1cfcb4cb2 (diff) |
Mark some functions noexcept when possible
Diffstat (limited to 'al/eax')
-rw-r--r-- | al/eax/x_ram.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/al/eax/x_ram.h b/al/eax/x_ram.h index 438b9916..d10fe697 100644 --- a/al/eax/x_ram.h +++ b/al/eax/x_ram.h @@ -25,14 +25,7 @@ constexpr auto AL_STORAGE_HARDWARE_NAME = "AL_STORAGE_HARDWARE"; constexpr auto AL_STORAGE_ACCESSIBLE_NAME = "AL_STORAGE_ACCESSIBLE"; -ALboolean AL_APIENTRY EAXSetBufferMode( - ALsizei n, - const ALuint* buffers, - ALint value); - -ALenum AL_APIENTRY EAXGetBufferMode( - ALuint buffer, - ALint* pReserved); - +ALboolean AL_APIENTRY EAXSetBufferMode(ALsizei n, const ALuint *buffers, ALint value) noexcept; +ALenum AL_APIENTRY EAXGetBufferMode(ALuint buffer, ALint *pReserved) noexcept; #endif // !EAX_X_RAM_INCLUDED |