From 6931b3f5059c1fbc2a605eb2ca5fbbf5f120b481 Mon Sep 17 00:00:00 2001 From: elasota Date: Mon, 8 Mar 2021 19:07:06 -0500 Subject: [PATCH] EOL fix --- PortabilityLayer/PLStringCompare.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/PortabilityLayer/PLStringCompare.h b/PortabilityLayer/PLStringCompare.h index 7f3a2ce..e8485bc 100644 --- a/PortabilityLayer/PLStringCompare.h +++ b/PortabilityLayer/PLStringCompare.h @@ -1,20 +1,20 @@ -#pragma once - -#include "PLCore.h" -#include "PLPasStr.h" +#pragma once + +#include "PLCore.h" +#include "PLPasStr.h" namespace StrCmp -{ +{ int CompareCaseInsensitive(const PLPasStr &string1, const PLPasStr &string2); int Compare(const PLPasStr &string1, const PLPasStr &string2); inline bool EqualCaseInsensitive(const PLPasStr &string1, const PLPasStr &string2) - { - return CompareCaseInsensitive(string1, string2) == 0; + { + return CompareCaseInsensitive(string1, string2) == 0; } inline bool Equal(const PLPasStr &string1, const PLPasStr &string2) - { - return Compare(string1, string2) == 0; - } + { + return Compare(string1, string2) == 0; + } }