From 9dbea9db08c6b4f1e500049193adb2ff06871edd Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 25 Jan 2022 08:17:48 -0800 Subject: [PATCH] Update FileUtils.cpp --- CLI/FileUtils.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CLI/FileUtils.cpp b/CLI/FileUtils.cpp index a799368d..87decb51 100644 --- a/CLI/FileUtils.cpp +++ b/CLI/FileUtils.cpp @@ -76,7 +76,8 @@ std::optional readFile(const std::string& name) return result; } -std::optional readStdin() { +std::optional readStdin() +{ std::string result; char buffer[READ_BUFFER_SIZE] = { };