diff options
author | Abseil Team <absl-team@google.com> | 2020-06-16 09:12:55 -0700 |
---|---|---|
committer | Andy Getz <durandal@google.com> | 2020-06-16 13:01:21 -0400 |
commit | ccdbb5941f992fabda7eae3ce72f55efc17c826a (patch) | |
tree | cc3fad62dff6f279ce77f17047c4eef5ebbaf251 /absl/base | |
parent | 01f5f81f93c5a18b0b1e35208e654be8d2c69bdd (diff) |
Export of internal Abseil changes
--
05b0b9aaed03199b0041988f3aa31c6257e05712 by Chris Kennelly <ckennelly@google.com>:
Accept absl::string_view for internal ForEachSection parameter.
PiperOrigin-RevId: 316694540
--
d14d61f1d017e967923bbffaf12b45c4e6b40d36 by Abseil Team <absl-team@google.com>:
Allow ABSL_PREDICT_FALSE to be used with a type that's explicitly convertible to bool.
So far ABSL_PREDICT_TRUE could be used with these, but not ABSL_PREDICT_FALSE.
PiperOrigin-RevId: 316684594
--
16a8f5e183688b2bd5069f9d3a2c5f2a978d1eaa by Abseil Team <absl-team@google.com>:
Allow ABSL_PREDICT_FALSE to be used with a type that's explicitly convertible to bool.
So far ABSL_PREDICT_TRUE could be used with these, but not ABSL_PREDICT_FALSE.
PiperOrigin-RevId: 316634388
--
1ecfa42a400a5ea9435110e6a5416a46414bb6fb by Gennadiy Rozental <rogeeff@google.com>:
Internal change
PiperOrigin-RevId: 316547270
--
ee915dffdf18818b30107b79c82792d6ca7fc691 by Andy Getzendanner <durandal@google.com>:
Remove a copy-pasted comment and add a missing cmake dep.
PiperOrigin-RevId: 316541265
--
26c74c5a61269afe37cd459c9a508ddd0a47f8f3 by Gennadiy Rozental <rogeeff@google.com>:
Make absl/flag/reflection target publicly visible.
PiperOrigin-RevId: 316523446
GitOrigin-RevId: 05b0b9aaed03199b0041988f3aa31c6257e05712
Change-Id: I0aaa8b0b81c2a79fbc42d116c105512176010b25
Diffstat (limited to 'absl/base')
-rw-r--r-- | absl/base/CMakeLists.txt | 1 | ||||
-rw-r--r-- | absl/base/optimization_test.cc | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/absl/base/CMakeLists.txt b/absl/base/CMakeLists.txt index b43843cc..62486f9d 100644 --- a/absl/base/CMakeLists.txt +++ b/absl/base/CMakeLists.txt @@ -711,5 +711,6 @@ absl_cc_test( ${ABSL_TEST_COPTS} DEPS absl::core_headers + absl::optional gtest_main ) diff --git a/absl/base/optimization_test.cc b/absl/base/optimization_test.cc index 62b35666..894b68f8 100644 --- a/absl/base/optimization_test.cc +++ b/absl/base/optimization_test.cc @@ -12,10 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -// This test serves primarily as a compilation test for base/raw_logging.h. -// Raw logging testing is covered by logging_unittest.cc, which is not as -// portable as this test. - #include "absl/base/optimization.h" #include "gtest/gtest.h" |