I have a build warning with gcc 4.8.2.
lensfun-code/tests/test_modifier.cpp:46:147: warning: deprecated conversion from string constant to ‘char’ [-Wwrite-strings]
char geom_names [] = {"rectilinear", "panoramic", "equirect", "fisheye", "fisheye-equisolid", "fisheye-orthographic", "fisheye-thoby", NULL};
lensfun-code/tests/test_modifier.cpp:46:147: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Shouldn't string literals be an array of N const char* ?
Find attached a patch, it fixes this and deprecated doxyfile tags.
Thanks, I have applied your patch.