diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-07-28 17:15:34 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-07-28 17:15:34 -0700 |
commit | b4d56d3fdff4243ae2a3fc64934ced2af3187690 (patch) | |
tree | 9a9809e2e991037aa5798a05ab7321d143b95e5f /Alc/hrtf.cpp | |
parent | c8bbd75bf9a6f0170ec95b130b3eb17cd8cdd5ad (diff) |
Remove the UNUSED macro
Diffstat (limited to 'Alc/hrtf.cpp')
-rw-r--r-- | Alc/hrtf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/hrtf.cpp b/Alc/hrtf.cpp index 5561ebfd..73cdc24e 100644 --- a/Alc/hrtf.cpp +++ b/Alc/hrtf.cpp @@ -1195,7 +1195,7 @@ void AddBuiltInEntry(al::vector<EnumeratedHrtf> &list, const std::string &filena using ResData = al::span<const char>; #ifndef ALSOFT_EMBED_HRTF_DATA -ResData GetResource(int UNUSED(name)) +ResData GetResource(int /*name*/) { return ResData{}; } #else |