Closed gchatelet closed 11 years ago
We should use more compact
const char var[] = "";
instead of more verbose
const char* const var = "";
NB: both of those declarations ensure the compiler can safely place the string in the read-only data segment of the executable.
We should use more compact
instead of more verbose
NB: both of those declarations ensure the compiler can safely place the string in the read-only data segment of the executable.