-
Originally reported on Google Code with ID 16
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of compile
time are found in the headers. I'm curious what it would take…
-
I am using this 3rd party library that includes headers using '.' and '..'.
The iwyu seems to simply concatenate the these includes without normalizing the path. Is this intentional or something to…
-
Apply best practices from: https://www.google.com/url?sa=t&source=web&rct=j&url=https://github.com/lefticus/cppbestpractices&ved=2ahUKEwjYudyHg-7jAhVHPawKHWVMCUYQFjAAegQIAxAB&usg=AOvVaw2ECNLHNtDjvy5_Z…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
IWYU seems to only analyze .cc/.cpp files, however the biggest wins in terms of
compile time are found in the headers. I'm curious what it would take to be
able to analyze header files as well.
…
-
```
Using iwyu with this code
----
#include
#include
#include
int foo(void) {
fprintf(stderr, "an error\n");
return INT_MAX;
}
----
will display
foo.c should add these lines:
fo…