-
```
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…
-
```
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-…
-
```
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…
-
```
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…
-
```
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…
-
```
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-…
-
Consider the following example:
```
$ cat foo.h
#include
template
class Vector final : private std::vector
{
public:
Vector() = default;
};
```
```
$ cat main.cpp
#includ…
-
It would be great if IncludeCleaner could support mapping files similar to IWYU: https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUMappings.md. For example, during Chro…