Evan Haas
Evan Haas
https://clang.llvm.org/docs/BoundsSafety.html There's a lot here if you include the runtime checks and new builtins but I think it can be handled in chunks - my suggestion would be that we...
Found this example here: https://marc.info/?l=boost&m=118835769257658&w=2 ```c #define A(m) m( B(f) #define B(x) A(x) #define C(x) < x > A(C) ) * ``` clang, GCC, MSVC, and tinycc output: ``` <...
From the GCC docs (omitting objective-c info) at https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html: `-Wshadow` Warn whenever a local variable or type declaration shadows another variable, parameter, type, class member (in C++), or instance variable...