diff options
Diffstat (limited to 'al')
-rw-r--r-- | al/source.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/al/source.cpp b/al/source.cpp index d5ac8f45..9289d25c 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -1423,7 +1423,7 @@ auto GetCheckers(ALCcontext *const Context, const SourceProp prop, const al::spa } template<typename T> -noinline void SetProperty(ALsource *const Source, ALCcontext *const Context, const SourceProp prop, +NOINLINE void SetProperty(ALsource *const Source, ALCcontext *const Context, const SourceProp prop, const al::span<const T> values) try { auto&& [CheckSize, CheckValue] = GetCheckers(Context, prop, values); @@ -2008,7 +2008,7 @@ auto GetSizeChecker(ALCcontext *const Context, const SourceProp prop, const al:: } template<typename T> -[[nodiscard]] noinline +[[nodiscard]] NOINLINE bool GetProperty(ALsource *const Source, ALCcontext *const Context, const SourceProp prop, const al::span<T> values) try { |