From 87bc6672893b65d53b665f34570acf18bd8c140c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 2 Apr 2017 09:26:14 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/utils.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/utils.h b/lib/utils.h index fce9d8275..fc68fc2c6 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -55,7 +55,8 @@ private: Cont data_; }; -inline bool endsWith(const std::string &str, char c) { +inline bool endsWith(const std::string &str, char c) +{ return str.back() == c; }