-
```
Let's take the following file:
---
#include
#include
int main() {
char* f = g_strdup_printf("%s", "test");
printf("%s\n", f);
g_free(f);
return 0;
}
---
iwyu recommends:
$ iwyu `pkg-…
-
```
As far as I can tell, iwyu does not work well for C code, which means it can
also not be used on projects (like ICU) that expose C APIs (sadly necessary for
stable APIs from shared libraries) an…
-
Hello,
I'd like to propose a new update to the extension. I'm currently working on a separate extension with IWYU integration.
Its capabilities are the same, but it has a built-in map generator f…
-
```
When the compile line refers to a source file by its absolute name iwyu
suggests that the includes be changed to absolute:
jason$ cat Foo.h
#ifndef _FOO_H_
#define _FOO_H_
class Foo {
Foo();
…
-
### Example
```cpp
#include
#include
template
std::pair foo(std::span);
```
### Steps to reproduce
```console
$ include-what-you-use -std=c++20 repr.cpp
repr.cpp should add these li…
-
i can run iwyu and python in the workspace correctly. And i have set the iwyu.exe to iwyu. What could be the cause?
![image](https://user-images.githubusercontent.com/5505684/98309656-ffadc380-1f98-1…
-
I'm beginning to believe that the 'iwyu' tool is more trouble than it is worth and should be removed from our CI pipeline.
- Here, the tool is getting caught in a loop and running for 3+ hours: h…
-
@jowr - here is a fun project : cleaning up the headers so we remove superfluous includes. See:
https://github.com/jasonmp85/homebrew-iwyu (for OSX)
http://stackoverflow.com/a/30951493/1360263 (cmak…
ibell updated
8 years ago
-
```
Hi. When I run IWYU on a cpp file normally I would get the report for that cpp
file and also its .h header. However, I found some strange case where this was
not happening. I am runing the trun…
-
```
What steps will reproduce the problem? Give the *exact* arguments passed
to include-what-you-use, and attach the input source file that gives the
problem (minimal test-cases are much appreciated!…