diff options
author | Chris Robinson <[email protected]> | 2018-11-18 22:14:44 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-18 22:14:44 -0800 |
commit | becbaab2dc4cf39fc3c0f64f352a76aee6d8e26c (patch) | |
tree | b499ef8306c4877b6f86ef0fe37f7df34678a578 /Alc/hrtf.cpp | |
parent | e23796aabe21a065b3fde34e8023a60a4bcb7dc5 (diff) |
Remove some unnecessary static specifiers
Diffstat (limited to 'Alc/hrtf.cpp')
-rw-r--r-- | Alc/hrtf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/hrtf.cpp b/Alc/hrtf.cpp index 89b80074..0393da65 100644 --- a/Alc/hrtf.cpp +++ b/Alc/hrtf.cpp @@ -639,7 +639,7 @@ struct Hrtf *LoadHrtf00(std::istream &data, const char *filename) &reinterpret_cast<ALubyte(&)[2]>(delays[0]), filename); } -static struct Hrtf *LoadHrtf01(std::istream &data, const char *filename) +struct Hrtf *LoadHrtf01(std::istream &data, const char *filename) { ALuint rate{GetLE_ALuint(data)}; ALushort irSize{GetLE_ALubyte(data)}; @@ -944,7 +944,7 @@ struct Hrtf *LoadHrtf02(std::istream &data, const char *filename) } -static bool checkName(al::vector<EnumeratedHrtf> &list, const std::string &name) +bool checkName(al::vector<EnumeratedHrtf> &list, const std::string &name) { return std::find_if(list.cbegin(), list.cend(), [&name](const EnumeratedHrtf &entry) |