From fdb857994113259628d8dbcc029832e2ab5399b9 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Fri, 20 Aug 2021 01:42:43 +0200 Subject: [PATCH] Fix a typo from the previous commit --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 6d9c5a2..3935f57 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,7 +69,7 @@ int main(int argc, char* argv[]) { for (auto& currentFuture: Units) { const auto&& result = currentFuture.get(); if (not result.second.has_value()) { - If (printResult) cout << result.first << "\n\n"; + if (printResult) cout << result.first << "\n\n"; } else { cout << "Compilation of " << result.first << " has failed with the following error:\n" << result.second.value().what() << "\n\n"; }