knev

Results 14 comments of knev

I like a tidy compile process, so I'm willing to do the work if you tell me how you would like to handle it. I'm not sure if you want...

Thanks. Good point. I don't think I have a good argument against that. I will take a look at it tomorrow. Cheers!

For posterity: disabling the deprecated warning on mac is ... ``` if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID STREQUAL "Clang") add_compile_options(-pipe) add_compile_options(-Wall) // ... # TODO fix these warnings add_compile_options(-Wno-sign-compare) add_compile_options(-Wno-switch) add_compile_options(-Wno-format-security) add_compile_options(-Wno-deprecated-declarations) //...

One "solution" is to redefine `sprintf/vsprintf` to `D3_` specific functions local to the idStr compilation unit. Without changing any functionality, this means the deprecation warnings are just printed once on...