From d40c0763f1af5c24a4837d2a1dbb9e4adb35b5d8 Mon Sep 17 00:00:00 2001 From: Sam El-Husseini Date: Thu, 12 Jan 2017 16:15:15 -0800 Subject: [PATCH] fixing indentation --- libs/core/core.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/core/core.cpp b/libs/core/core.cpp index 890d763a..cdf64538 100644 --- a/libs/core/core.cpp +++ b/libs/core/core.cpp @@ -21,12 +21,12 @@ namespace String_ { //% int compare(StringData *s, StringData *that) { - int compareResult = strcmp(s->data, that->data); - if (compareResult < 0) - return -1; - else if (compareResult > 0) - return 1; - return 0; + int compareResult = strcmp(s->data, that->data); + if (compareResult < 0) + return -1; + else if (compareResult > 0) + return 1; + return 0; } //%