From cd8b14e00b7c4bdb69d33efcd75d82291b1a3630 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Thu, 14 Oct 2021 23:28:58 +0200 Subject: [PATCH] Add a missing semicolon in the definition of isNPOS in main.cpp --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 4e6f0f5..fcbdef7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,7 +50,7 @@ int main(int argc, char* argv[]) { } catch (const Yerbacon::Exception& error) { unsigned long lastSlash = 0; const unsigned long position1 = fileName.find_last_of('/'); - const bool isNPOS = cmp_equal(position1, string_view::npos) + const bool isNPOS = cmp_equal(position1, string_view::npos); if constexpr(filesystem::path::preferred_separator == '/') { if (not isNPOS) { lastSlash = position1;