diff options
Diffstat (limited to 'absl/types')
-rw-r--r-- | absl/types/any.h | 2 | ||||
-rw-r--r-- | absl/types/optional.h | 2 | ||||
-rw-r--r-- | absl/types/variant.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/absl/types/any.h b/absl/types/any.h index e750f485ab48..f3a32812662f 100644 --- a/absl/types/any.h +++ b/absl/types/any.h @@ -58,7 +58,7 @@ #ifdef ABSL_HAVE_STD_ANY -#include <any> +#include <any> // IWYU pragma: export namespace absl { using std::any; diff --git a/absl/types/optional.h b/absl/types/optional.h index 0c1213f4f2d3..a86dea92c4ac 100644 --- a/absl/types/optional.h +++ b/absl/types/optional.h @@ -40,7 +40,7 @@ #ifdef ABSL_HAVE_STD_OPTIONAL -#include <optional> +#include <optional> // IWYU pragma: export namespace absl { using std::bad_optional_access; diff --git a/absl/types/variant.h b/absl/types/variant.h index 9652e3b9c64e..8d8b5dbd0093 100644 --- a/absl/types/variant.h +++ b/absl/types/variant.h @@ -47,7 +47,7 @@ #ifdef ABSL_HAVE_STD_VARIANT -#include <variant> +#include <variant> // IWYU pragma: export namespace absl { using std::bad_variant_access; |