TIL: 'include-what-you-use' is also only an 'apt-get install iwyu' away
Then a simple 'make -k CXX=iwyu' reports superfluous and missing #include statements in your (clang-compilable) codebase. Nice one!
github.com/include-what-you-… …
/cc @lballabio #rcpp
2
1
9
For code with, say, Rcpp.h and/or Boost headers (which really are aggregated include statements) it wants to break things up into smaller more concise statements---just as stated---so you may encounter a lot of output.
Dec 11, 2019 · 1:12 PM UTC
1
