From 040309b9f402f9629e1a553665ce789bd530dec2 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 22 Mar 2020 08:22:25 -0700 Subject: Add missing semicolon --- alc/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 al::vector 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 _{search_lock}; -- cgit v1.2.3