diff options
author | Derek Mauro <dmauro@google.com> | 2024-06-12 08:23:36 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-06-12 08:24:30 -0700 |
commit | 17137c084a3d502277bea803b076894eef06af41 (patch) | |
tree | f989f0b4885bc2309915d8c5df168506841555de /absl/base/internal | |
parent | 567ebd0540f4e56d125491e71e2727d8ab5458e0 (diff) | |
download | abseil-17137c084a3d502277bea803b076894eef06af41.tar.gz abseil-17137c084a3d502277bea803b076894eef06af41.tar.bz2 abseil-17137c084a3d502277bea803b076894eef06af41.zip |
Add the missing inline namespace to the nullability files
PiperOrigin-RevId: 642621989
Change-Id: I95efa4bd9fe8fe3c449304706401374f851f0fbe
Diffstat (limited to 'absl/base/internal')
-rw-r--r-- | absl/base/internal/nullability_impl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/absl/base/internal/nullability_impl.h b/absl/base/internal/nullability_impl.h index 36e1b33d..03fa2434 100644 --- a/absl/base/internal/nullability_impl.h +++ b/absl/base/internal/nullability_impl.h @@ -19,10 +19,11 @@ #include <type_traits> #include "absl/base/attributes.h" +#include "absl/base/config.h" #include "absl/meta/type_traits.h" namespace absl { - +ABSL_NAMESPACE_BEGIN namespace nullability_internal { // `IsNullabilityCompatible` checks whether its first argument is a class @@ -101,6 +102,7 @@ using NullabilityUnknownImpl = T; } // namespace nullability_internal +ABSL_NAMESPACE_END } // namespace absl #endif // ABSL_BASE_INTERNAL_NULLABILITY_IMPL_H_ |