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`
This commit is contained in:
parent
3890256fc5
commit
40323407df
6 changed files with 7 additions and 14 deletions
|
|
@ -612,8 +612,7 @@ uint64_t _OS::get_unix_time_from_datetime(Dictionary datetime) const {
|
|||
static_cast<unsigned int>(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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue