Remove some unnecessary static specifiers

This commit is contained in:
Chris Robinson
2018-11-18 22:14:44 -08:00
parent e23796aabe
commit becbaab2dc
+2 -2
View File
@@ -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)