From de5a591b1506a46e7d099f6819eca7dd9d07cdd9 Mon Sep 17 00:00:00 2001 From: "A.J. Beamon" Date: Mon, 6 Jan 2020 15:17:13 -0800 Subject: [PATCH] Attempt a minor pointless change to fix the build --- flow/Platform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow/Platform.cpp b/flow/Platform.cpp index 1eb5cc49f4..962fe1e8e0 100644 --- a/flow/Platform.cpp +++ b/flow/Platform.cpp @@ -133,12 +133,12 @@ std::string removeWhitespace(const std::string &t) if (found != std::string::npos) str.erase(found + 1); else - str.clear(); // str is all whitespace + str.clear(); // str is all whitespace found = str.find_first_not_of(ws); if (found != std::string::npos) str.erase(0, found); else - str.clear(); // str is all whitespace + str.clear(); // str is all whitespace return str; }