Bartek Kryza

Results 87 comments of Bartek Kryza

@rizsotto @roubert I think I stumbled on the same issue, steps to reproduce on my side: `Makefile`: ```make hello: src/hello.cc src/hello.h clang++-19 -std=c++17 -o hello src/hello.cc ``` `src/hello.cc`: ```cpp #include...

@rizsotto Thanks, I can confirm that adding the following config: ```json { "compilation": { "compilers_to_exclude": ["/usr/lib/llvm-19/bin/clang"] } } ``` solves the issue.

@andy-yx-chen Thanks for reporting this and debugging the code to fix it. I'm AFK this week, but I'll try to reproduce it and incorporate your fix next week...

@andy-yx-chen I've looked into your issue, and I'm not sure I understand it's intent. The only test case that behaves differently is [t20052](https://clang-uml.github.io/md_docs_2test__cases_2t20052.html), where the calls to a() and b()...

@andy-yx-chen Thanks, a piece of code reproducing the problem would be very helpful. In the meantime, I realized that I can easily add an option to "fold" repeating activities, i.e....

@jmagnuson I'll consider creating a Docker image, however first I want to finalize version 0.2.0, but I have a few features I want to complete before that. Regardless, `clang-include-graph` doesn't...

@jmagnuson I've published this week `0.2.0`, and I looked into this clang Docker, but honestly I'm not sure it will work for `clang-include-graph`. The problem is that, as as Clang-based...

@kormanowsky Can you share few more details so that I can reproduce the issue: - Did you install `clang-uml` from Homebrew or did you build it yourself? - Can you...

@aka-mj Typically, compiler path should be set properly in your `compile_commands.json` as the first argument of each compile command. If it is, and the compiler is GCC-compatible, you can run...

@jensen82 Can you see any specific errors reported by Clang in the log? The error `fatal error: too many errors emitted, stopping now` is usually emitted by Clang when parsing...