Hi, I have a main.cpp class A { public: void foo(){} }; int main() { A a; a.foo(); } a CMakeLists.txt cmake_minimum_required(VERSION 2.8.9) project (hello) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) add_executable(hello main.cpp) and a suppressfile.txt : functionStatic:*main.cpp Please, run : mkdir build; cd build cmake .. Test without the suppressfile, you can see you have a warning about functionStatic : cppcheck --inconclusive --enable=all --project=compile_commands.json Checking /tmp/cppchecktest/main.cpp...
Hi, I just made a "big" commit about stabilization. Lot of wrong files creates lot of null dereference and other bugs. Please, scream if I broke something. make check still working. By the way, I will be happy if I could add some tests for ada and python. I never used them. For example, python looks to handle abstract method with library abc and annotation. If someone may write the result for each test : just add python or ada in tests.sh, run make check and correct all .python.fail or .ada.fail....
Better handle of broken dia file.
Add support for naming constructor / destructor.
Hi, dia2code only generates header. It doesn't generate prototype in source file. Regards,
Patch to Correct Python Parameters and Formatting
Patch by Wolf Ó Spealáin to fix parameter listi...
Hi, Thanks. I don't really know python but I made a diff from the old and the new...