From 82ba6c77ceb70cf92add22ca9ecaf0fc7cac99fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heiko=20Kr=C3=B6ger?= Date: Wed, 16 Oct 2024 00:26:45 +0200 Subject: [PATCH] Added the IWYU pragma export (#1154) * Added the IWYU pragma export clang-tidy has added the check misc-include-cleaner with version 17. This check respects the IWYU pragmas. --- include/gsl/gsl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/gsl/gsl b/include/gsl/gsl index 9e19140..53030b3 100644 --- a/include/gsl/gsl +++ b/include/gsl/gsl @@ -17,6 +17,7 @@ #ifndef GSL_GSL_H #define GSL_GSL_H +// IWYU pragma: begin_exports #include "algorithm" // copy #include "assert" // Ensures/Expects #include "byte" // byte @@ -28,5 +29,6 @@ #ifdef __cpp_exceptions #include "narrow" // narrow() #endif +// IWYU pragma: end_exports #endif // GSL_GSL_H