From 787891a3882795cee0364e8a0f0dda315578d155 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 22 Jan 2018 13:10:49 -0800 Subject: Changes imported from Abseil "staging" branch: - 5140470240e110cdad301446124b2e6075c4034a Fix typos in the Abseil issue template. by Shaindel Schwartz - 97a197521aa13fed099483c5424be1d4d8a87add Removing deprecated internal interfaces from FixedArray. by Daniel Katz - 2a222b425752e696db5c1688f1dfdb17e228cae9 Rollback for test breakage. by Andrew Hunter - d2d27e3ff67021b85726c1fc4d1d18b15e648ecf use std::allocator, not ::operator new in FixedArray for ... by Andrew Hunter - 8e0c0a9f5e29e00e0dfca707b88741a7546d09d6 No need to test defined(__has_warning) if not using it by Abseil Team GitOrigin-RevId: 5140470240e110cdad301446124b2e6075c4034a Change-Id: I485aa818efa07f960c924edb62715b5cbc41b97b --- absl/base/macros.h | 2 +- absl/container/fixed_array.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'absl') diff --git a/absl/base/macros.h b/absl/base/macros.h index d4140872..5ae0f05b 100644 --- a/absl/base/macros.h +++ b/absl/base/macros.h @@ -146,7 +146,7 @@ enum LinkerInitialized { // Every usage of a deprecated entity will trigger a warning when compiled with // clang's `-Wdeprecated-declarations` option. This option is turned off by // default, but the warnings will be reported by clang-tidy. -#if defined(__clang__) && __cplusplus >= 201103L && defined(__has_warning) +#if defined(__clang__) && __cplusplus >= 201103L #define ABSL_DEPRECATED(message) __attribute__((deprecated(message))) #endif diff --git a/absl/container/fixed_array.h b/absl/container/fixed_array.h index ec6fced1..1fec9d2b 100644 --- a/absl/container/fixed_array.h +++ b/absl/container/fixed_array.h @@ -175,6 +175,7 @@ class FixedArray { // fixed array. This pointer can be used to access and modify the contained // elements. pointer data() { return AsValue(rep_.begin()); } + // FixedArray::operator[] // // Returns a reference the ith element of the fixed array. -- cgit v1.2.3