glankk
Results
4
issues of
glankk
Having references as class members complicates copy/move constructors and assignment operators and in some cases prevents them from being defaulted. They are also a source of bugs, as there are...
Test code: ``` #define A(x, ...) # __VA_OPT__(# x) A(x, y) #define B(x, ...) # __VA_OPT__(x ## __VA_ARGS__) B(Hello, world) ``` simplecpp output: ``` # "x" "Hello" world ``` gcc...
bug