From 4a853fec97de3d1da75cf7b0cef6e029db5c737a Mon Sep 17 00:00:00 2001 From: Misa Date: Thu, 11 Feb 2021 16:47:40 -0800 Subject: [PATCH] Add a blank line to the end of is_positive_num() The return statement is too close to the block above it, so I want to space it out for aesthetics. --- desktop_version/src/UtilityClass.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop_version/src/UtilityClass.cpp b/desktop_version/src/UtilityClass.cpp index 69a5a352..d5f579ce 100644 --- a/desktop_version/src/UtilityClass.cpp +++ b/desktop_version/src/UtilityClass.cpp @@ -313,6 +313,7 @@ bool is_positive_num(const char* str, const bool hex) } } } + return true; }