Michael Kreisel

Results 1 comments of Michael Kreisel

I was able to compile with GCC 8 and 9 after adding `-Wno-cast-function-type -Wno-deprecated-copy` to the C and CXX flags in CMakeLists.txt: ``` set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-cast-function-type -Wno-deprecated-copy") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall...