Commit Graph

6 Commits

Author SHA1 Message Date
Eric Wasylishen bb6069f8d4 .clang-format: update some things reported by linter
+ set c++20
2023-05-07 21:44:29 -06:00
Eric Wasylishen b17633f746 cleanup: set PackConstructorInitializers: Never 2023-02-20 10:23:59 -07:00
Jonathan 1d8a0c1df3 clang-format pass 2022-07-28 06:14:54 -04:00
Eric Wasylishen b1ba7064ea clang-format: change brace style to Linux
fixes VS2022 putting function opening braces on the same line, e.g.

void Test() {
    ;
}

instead of what we want,

void Test()
{
    ;
}
2022-04-09 21:43:58 -06:00
Jonathan 7f8d2cfb49 Fix single line functions 2021-09-14 02:56:44 -04:00
Jonathan 4e7542b111 Clang format pass
typedef -> using
include guards -> pragma once
typedef struct x { } y; -> struct y { }
some fixes to extremely old code that shouldn't be required any more
2021-09-14 02:32:26 -04:00