Balazs Benics
Balazs Benics
CodeCompass crashes on Xerces when we call `class collaboration diagram` on a certain class from vscode. To reproduce I attach the neccessary revision details for the related sources. I also...
Pretty much the title :D I already tried to log the compiler invocations using the `CodeChecker` tool, which `LD_PRELOAD`s a shared library, hooking the exec functions looking for compiler invocations....
More often than not only the last couple of steps are interesting in a bugreport - and maybe the very first step to see what was the first function under...
It would be nice to run clang-tidy with custom configurations. CodeChecker already has an [option](https://codechecker.readthedocs.io/en/latest/analyzer/checker_and_analyzer_configuration/#using-tidyargs-option-in-codechecker) for this. Do you think we need such an option, or we can work around...
Make the project compilable with CMake build scripts. - [cmake use latex helper](https://gitlab.kitware.com/kmorel/UseLATEX)
Create a travis build for this repo. And embedd the badge into the [README.md](https://github.com/Szelethus/ELTE-IK-CPP/blob/master/README.md) file. [YouTube short example with Node JS](https://www.youtube.com/watch?v=Uft5KBimzyk) [Example latex travis build](https://harshjv.com/blog/setup-latex-pdf-build-using-travis-ci/) [How to embed the badge...
**Why don't we format assembly code in Intel style?** To generate only assembly in Intel style: ```bash >g++ -S -masm=intel mycpp.cpp >clang++ -S -masm=intel mycpp.cpp ``` Results: `mycpp.s`
The conservative call invalidation logic is a bit complicated, and would deserve some refactoring. When a call has some arguments, we escape them. Except, if its a pointer to constant...