aboutsummaryrefslogtreecommitdiff
path: root/absl/base/nullability.h
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-06-12 08:23:36 -0700
committerCopybara-Service <copybara-worker@google.com>2024-06-12 08:24:30 -0700
commit17137c084a3d502277bea803b076894eef06af41 (patch)
treef989f0b4885bc2309915d8c5df168506841555de /absl/base/nullability.h
parent567ebd0540f4e56d125491e71e2727d8ab5458e0 (diff)
downloadabseil-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/nullability.h')
-rw-r--r--absl/base/nullability.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/absl/base/nullability.h b/absl/base/nullability.h
index 6f49b6f5..7804de2e 100644
--- a/absl/base/nullability.h
+++ b/absl/base/nullability.h
@@ -150,9 +150,11 @@
#ifndef ABSL_BASE_NULLABILITY_H_
#define ABSL_BASE_NULLABILITY_H_
+#include "absl/base/config.h"
#include "absl/base/internal/nullability_impl.h"
namespace absl {
+ABSL_NAMESPACE_BEGIN
// absl::Nonnull
//
@@ -219,6 +221,7 @@ using Nullable = nullability_internal::NullableImpl<T>;
template <typename T>
using NullabilityUnknown = nullability_internal::NullabilityUnknownImpl<T>;
+ABSL_NAMESPACE_END
} // namespace absl
#endif // ABSL_BASE_NULLABILITY_H_