From 4bfecab8138a773b4422111cd7be9e71e4052099 Mon Sep 17 00:00:00 2001 From: Rémi Verschelde Date: Sat, 14 Jan 2017 17:51:21 +0100 Subject: Style: No break before list brace clang-format does not handle that well *at all*. For the reference, found the relevant pieces of code with: `ag "=[ "$'\t'"]?"$'\n'"[ "$'\t'"]?{" --ignore=thirdparty` (cherry picked from commit 40323407df65ef8f40648c51ab9b4574ea985d7f) --- core/bind/core_bind.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/bind/core_bind.cpp') diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index 41529252d..62dfe8836 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -642,8 +642,7 @@ uint64_t _OS::get_unix_time_from_datetime(Dictionary datetime) const { static_cast(datetime[YEAR_KEY]):0); /// How many days come before each month (0-12) - static const unsigned short int DAYS_PAST_THIS_YEAR_TABLE[2][13] = - { + static const unsigned short int DAYS_PAST_THIS_YEAR_TABLE[2][13] = { /* Normal years. */ { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 }, /* Leap years. */ -- cgit v1.3.1