muttleyxd / clang-tools-static-binaries

static-linked versions of clang tools for Linux, Mac OS X and Windows, available in AUR as clang-format-static-bin
The Unlicense
162 stars 55 forks source link

add clang 13.0.1 #31

Open tytan652 opened 1 year ago

tytan652 commented 1 year ago

13.0.1 has a subtle difference with 13.0.0 when formatting ObjC enums.

13:

enum crop_mode
{
     CROP_NONE,
     CROP_MANUAL,
     CROP_TO_WINDOW,

13.0.1:

enum crop_mode {
     CROP_NONE,
     CROP_MANUAL,
     CROP_TO_WINDOW,