Add missing semicolon

This commit is contained in:
Chris Robinson 2020-03-22 08:22:25 -07:00
parent f6a0b004e0
commit 040309b9f4

View File

@ -168,7 +168,7 @@ void DirectorySearch(const char *path, const char *ext, al::vector<std::string>
al::vector<std::string> SearchDataFiles(const char *ext, const char *subdir)
{
auto is_slash = [](int c) noexcept -> int { return (c == '\\' || c == '/'); }
auto is_slash = [](int c) noexcept -> int { return (c == '\\' || c == '/'); };
static std::mutex search_lock;
std::lock_guard<std::mutex> _{search_lock};