From 936dd2158b435cb38fe2703a593bfc82391945fb Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 16 Nov 2020 18:23:36 -0600 Subject: [PATCH] chore(format): fix formatting --- storm/String.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/storm/String.cpp b/storm/String.cpp index 5f01cec..b12c661 100644 --- a/storm/String.cpp +++ b/storm/String.cpp @@ -225,7 +225,8 @@ const char* SStrStr(const char* string, const char* search) { STORM_ASSERT(search); const char* i; - for (i = search; *i; ++i); + for (i = search; *i; ++i) + ; size_t length = i - search; const char* substring = string;