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"; }