aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-22 08:22:25 -0700
committerChris Robinson <[email protected]>2020-03-22 08:22:25 -0700
commit040309b9f402f9629e1a553665ce789bd530dec2 (patch)
treebc4738c9f3e1e7f8e29067e875e6caa8b8345980
parentf6a0b004e0424e1f12a226b3b3c7193063eb02e3 (diff)
Add missing semicolon
-rw-r--r--alc/helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/helpers.cpp b/alc/helpers.cpp
index 2725f542..ef6973cf 100644
--- a/alc/helpers.cpp
+++ b/alc/helpers.cpp
@@ -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};