Disable comma operator warnings

I've checked and found that none of the existing warnings are incorrect (other than those fixed a couple commits ago), but the main reason for disabling it is that one of the warnings is in Boost.Array which I can't do a lot about.
This commit is contained in:
2022-07-05 09:36:39 -04:00
parent d3f6bfe347
commit f5620f34b4

View File

@@ -2259,6 +2259,7 @@
"-Wno-long-long",
"-Wno-quoted-include-in-framework-header",
"-Wno-shorten-64-to-32",
"-Wno-comma",
);
};
name = Debug;
@@ -2352,6 +2353,7 @@
"-Wno-long-long",
"-Wno-quoted-include-in-framework-header",
"-Wno-shorten-64-to-32",
"-Wno-comma",
);
};
name = Release;