From bd808774d7c05a1df503129e9992f43d8da1c702 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 8 Dec 2019 15:10:43 +0000 Subject: [PATCH] indent in ucstrnicmp() function Signed-off-by: Ivailo Monev --- src/core/tools/qstring.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/tools/qstring.cpp b/src/core/tools/qstring.cpp index 09565ba79..21b6d8b78 100644 --- a/src/core/tools/qstring.cpp +++ b/src/core/tools/qstring.cpp @@ -171,7 +171,8 @@ static inline int ucstrcmp(const QChar *a, int alen, const QChar *b, int blen) // Unicode case-insensitive compare two same-sized strings static inline int ucstrnicmp(const ushort *a, const ushort *b, int l) { - return u_strncasecmp(reinterpret_cast(a), reinterpret_cast(b), l, U_FOLD_CASE_DEFAULT); + return u_strncasecmp(reinterpret_cast(a), + reinterpret_cast(b), l, U_FOLD_CASE_DEFAULT); } static inline bool qMemEquals(const QChar *a, const QChar *b, int length)