diff options
author | Abseil Team <absl-team@google.com> | 2022-08-31 10:39:21 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-08-31 10:40:23 -0700 |
commit | 72ec15a317a74cccf03a62f749f3ab28206be069 (patch) | |
tree | 4389f6e49287c9e738d7580b4a851958a3283d34 /absl/types | |
parent | 78f885642a9458100274cac89aff1d12a1897b53 (diff) |
Fixed header guards to match style guide conventions.
PiperOrigin-RevId: 471292183
Change-Id: Ic124d671dd3b0ae819f741885abb046cbf7e1add
Diffstat (limited to 'absl/types')
-rw-r--r-- | absl/types/internal/variant.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/types/internal/variant.h b/absl/types/internal/variant.h index 7c402ece..9adea563 100644 --- a/absl/types/internal/variant.h +++ b/absl/types/internal/variant.h @@ -16,8 +16,8 @@ // separate file to avoid cluttering the top of the API header with // implementation details. -#ifndef ABSL_TYPES_VARIANT_INTERNAL_H_ -#define ABSL_TYPES_VARIANT_INTERNAL_H_ +#ifndef ABSL_TYPES_INTERNAL_VARIANT_H_ +#define ABSL_TYPES_INTERNAL_VARIANT_H_ #include <cassert> #include <cstddef> @@ -1643,4 +1643,4 @@ ABSL_NAMESPACE_END } // namespace absl #endif // !defined(ABSL_USES_STD_VARIANT) -#endif // ABSL_TYPES_VARIANT_INTERNAL_H_ +#endif // ABSL_TYPES_INTERNAL_VARIANT_H_ |