|
|
|
|
|
by femngi
4295 days ago
|
|
That's not a C++ community convention, it's just another bone headed part of the Google C++ coding standards. It's stupid because now everything is potentially nullable and every single function will start with: if (!arg1 || !arg2 || !arg3 ...) {
what_I_should_do_here_isnt_really_clear();
|
|