microsoft / GSL

Guidelines Support Library
Other
6.11k stars 736 forks source link

Added the IWYU pragma export #1154

Open hkroeg opened 1 month ago

hkroeg commented 1 month ago

clang-tidy has added the check misc-include-cleaner with version 17. It checks for unused and missing includes. For instance, the following code will be flagged since the file gsl does not directly supply gsl::span

#include "gsl/include/gsl/gsl"

gsl::span<int>

The check misc-include-cleaner respects the IWYU pragmas. So, this pull request adds the IWYU pragmas.