aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-13 20:33:26 -0700
committerChris Robinson <[email protected]>2019-08-13 20:33:26 -0700
commit91ff01d1ad3c2995266902f41454c04e2b6e5d47 (patch)
tree1ae1944dc48890e7f871a8d8532d9f7abe9db0a7
parentbc9f39b5ac69b34cb3d278e5573dc63811a0c442 (diff)
Don't explicitly inline a particular function
-rw-r--r--al/source.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/source.cpp b/al/source.cpp
index 018e49a0..95c3305e 100644
--- a/al/source.cpp
+++ b/al/source.cpp
@@ -74,7 +74,7 @@ namespace {
using namespace std::placeholders;
-inline ALvoice *GetSourceVoice(ALsource *source, ALCcontext *context)
+ALvoice *GetSourceVoice(ALsource *source, ALCcontext *context)
{
ALuint idx{source->VoiceIdx};
if(idx < context->mVoiceCount.load(std::memory_order_relaxed))