From 2fd2edd3f91eab736832d6d0d78af65e173f7b5e Mon Sep 17 00:00:00 2001 From: versat Date: Thu, 14 May 2020 18:18:14 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.h b/lib/utils.h index c354cb7fe..53478436b 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -49,7 +49,7 @@ inline static bool isPrefixStringCharLiteral(const std::string &str, char q, con inline static bool isStringCharLiteral(const std::string &str, char q) { - static const std::vector suffixes{"", "u8", "u", "U", "L"}; + static const std::vector suffixes{"", "u8", "u", "U", "L"}; for (const std::string & p: suffixes) { if (isPrefixStringCharLiteral(str, q, p)) return true;