/home/rick/projects/dggridR/src/src/DgOutShapefile.cpp: In member function ‘void DgOutShapefile::writeDbf(const string&)’:
/home/rick/projects/dggridR/src/src/DgOutShapefile.cpp:243:24: warning: this statement may fall through [-Wimplicit-fallthrough=]
243 | ::report("DgOutShapefile::writeDbf() logical shapefile "
| ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
244 | "attributes not supported", failLevel());
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I think failLevel() causes the code to quit here. Adding a break eliminates the warning.
Fixes:
I think
failLevel()
causes the code to quit here. Adding a break eliminates the warning.