From f57d9d8d64e52d02ce6ce2152b1ad65a5dcbf5ec Mon Sep 17 00:00:00 2001 From: q66 Date: Wed, 17 Aug 2016 18:21:24 +0100 Subject: [PATCH] format --- lib_str.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib_str.cc b/lib_str.cc index 9b225cea..e029c5f6 100644 --- a/lib_str.cc +++ b/lib_str.cc @@ -13,7 +13,10 @@ static inline void cs_strgcmp(TvalRange args, TaggedValue &res, F cfunc) { val = cfunc(args[i - 1].get_strr(), args[i].get_strr()); } } else { - val = cfunc(!args.empty() ? args[0].get_strr() : ostd::ConstCharRange(), ostd::ConstCharRange()); + val = cfunc( + !args.empty() ? args[0].get_strr() : ostd::ConstCharRange(), + ostd::ConstCharRange() + ); } res.set_int(CsInt(val)); };