From 9e21b351fac243aab9d3bbe2805829b5e658abbc Mon Sep 17 00:00:00 2001 From: Rerumu Date: Fri, 5 Nov 2021 21:59:48 -0400 Subject: [PATCH] Fix whitespace --- CLI/Analyze.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CLI/Analyze.cpp b/CLI/Analyze.cpp index c0d8534b..9688bc43 100644 --- a/CLI/Analyze.cpp +++ b/CLI/Analyze.cpp @@ -241,9 +241,9 @@ int main(int argc, char** argv) if (isDirectory(argv[i])) { traverseDirectory(argv[i], [&](const std::string& name) { - if (name.length() > 4 && name.rfind(".lua") == name.length() - 4) - failed += !analyzeFile(frontend, name.c_str(), format, annotate); - }); + if (name.length() > 4 && name.rfind(".lua") == name.length() - 4) + failed += !analyzeFile(frontend, name.c_str(), format, annotate); + }); } else {