Commit Graph

4 Commits

Author SHA1 Message Date
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