mikrosimage / duke

Duke is an opensource high resolution image and sequence viewer dedicated to visual effect and post production companies.
MIT License
109 stars 22 forks source link

use same convention for global string declaration #32

Closed gchatelet closed 11 years ago

gchatelet commented 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.