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 /ci | |
parent | 78f885642a9458100274cac89aff1d12a1897b53 (diff) |
Fixed header guards to match style guide conventions.
PiperOrigin-RevId: 471292183
Change-Id: Ic124d671dd3b0ae819f741885abb046cbf7e1add
Diffstat (limited to 'ci')
-rw-r--r-- | ci/absl_alternate_options.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/absl_alternate_options.h b/ci/absl_alternate_options.h index 29b020d9..82d2ecf8 100644 --- a/ci/absl_alternate_options.h +++ b/ci/absl_alternate_options.h @@ -15,8 +15,8 @@ // Alternate options.h file, used in continuous integration testing to exercise // option settings not used by default. -#ifndef ABSL_BASE_OPTIONS_H_ -#define ABSL_BASE_OPTIONS_H_ +#ifndef ABSL_CI_ABSL_ALTERNATE_OPTIONS_H_ +#define ABSL_CI_ABSL_ALTERNATE_OPTIONS_H_ #define ABSL_OPTION_USE_STD_ANY 0 #define ABSL_OPTION_USE_STD_OPTIONAL 0 @@ -26,4 +26,4 @@ #define ABSL_OPTION_INLINE_NAMESPACE_NAME ns #define ABSL_OPTION_HARDENED 1 -#endif // ABSL_BASE_OPTIONS_H_ +#endif // ABSL_CI_ABSL_ALTERNATE_OPTIONS_H_ |