-- da04b8cd21f6225d71397471474d34a77df0efd6 by Jon Cohen <cohenjon@google.com>: Don't use std::any, std::optional, std::variant, and friends on MacOS versions older than 10.14. Although Xcode 10 includes those headers and makes the types available to use, according to https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes, on MacOS 10.13 and earlier use of any functions (std::get, for example) results in an error message to upgrade to MacOS 10.14. This fixes https://github.com/abseil/abseil-cpp/issues/207. See that issue for more information on the error generated. PiperOrigin-RevId: 221844618 -- 1d99f77b4c60c5b0d7984f46e8ed63a3f969c635 by Jon Cohen <cohenjon@google.com>: raw_hash_set_test is still flaky under gcc 4.8. Since we now have the probe_test, we don't need the PerfectRatio tests. Just remove them. PiperOrigin-RevId: 221843042 -- 135cbb2a5d90963256518b3b59fe6710815e5dfa by Abseil Team <absl-team@google.com>: Update absl/algorithm/CMakeLists.txt to use new functions i.e. absl_cc_(library|test) PiperOrigin-RevId: 221828348 -- 1a5abde4f17f998ae89d87155d59f982a70202d8 by Jon Cohen <cohenjon@google.com>: Internal change PiperOrigin-RevId: 221708245 -- e03e031d4de39275989f695c768b0940cce1ff16 by Matt Armstrong <marmstrong@google.com>: Log to FATAL in throw_delegate.h ABSL_RAW_LOG(FATAL, ...) is guaranteed to abort. Previously, the code was logging to ERROR and calling abort() explicitly, which defeated any integration with absl::raw_logging_internal::AbortHook(). These changes are limited to Abseil internal APIs. PiperOrigin-RevId: 221696513 -- d13691523a3f9a5367fd1194cf9604bf4a969029 by Shahriar Rouf <nafi@google.com>: Import of CCTZ from GitHub. PiperOrigin-RevId: 221694877 -- f4044c56d44ba0ac2a9f218ed55f1b1f9e985eae by Abseil Team <absl-team@google.com>: Update absl/base/CMakeLists.txt to use new functions i.e. absl_cc_(library|test) PiperOrigin-RevId: 221676669 GitOrigin-RevId: da04b8cd21f6225d71397471474d34a77df0efd6 Change-Id: If6621e10d096a39b6a056a072c2727a0df0b0620
		
			
				
	
	
		
			106 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2017 The Abseil Authors.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //      http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| #include "absl/base/internal/throw_delegate.h"
 | |
| 
 | |
| #include <cstdlib>
 | |
| #include <functional>
 | |
| #include <new>
 | |
| #include <stdexcept>
 | |
| #include "absl/base/config.h"
 | |
| #include "absl/base/internal/raw_logging.h"
 | |
| 
 | |
| namespace absl {
 | |
| namespace base_internal {
 | |
| 
 | |
| namespace {
 | |
| template <typename T>
 | |
| [[noreturn]] void Throw(const T& error) {
 | |
| #ifdef ABSL_HAVE_EXCEPTIONS
 | |
|   throw error;
 | |
| #else
 | |
|   ABSL_RAW_LOG(FATAL, "%s", error.what());
 | |
|   std::abort();
 | |
| #endif
 | |
| }
 | |
| }  // namespace
 | |
| 
 | |
| void ThrowStdLogicError(const std::string& what_arg) {
 | |
|   Throw(std::logic_error(what_arg));
 | |
| }
 | |
| void ThrowStdLogicError(const char* what_arg) {
 | |
|   Throw(std::logic_error(what_arg));
 | |
| }
 | |
| void ThrowStdInvalidArgument(const std::string& what_arg) {
 | |
|   Throw(std::invalid_argument(what_arg));
 | |
| }
 | |
| void ThrowStdInvalidArgument(const char* what_arg) {
 | |
|   Throw(std::invalid_argument(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdDomainError(const std::string& what_arg) {
 | |
|   Throw(std::domain_error(what_arg));
 | |
| }
 | |
| void ThrowStdDomainError(const char* what_arg) {
 | |
|   Throw(std::domain_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdLengthError(const std::string& what_arg) {
 | |
|   Throw(std::length_error(what_arg));
 | |
| }
 | |
| void ThrowStdLengthError(const char* what_arg) {
 | |
|   Throw(std::length_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdOutOfRange(const std::string& what_arg) {
 | |
|   Throw(std::out_of_range(what_arg));
 | |
| }
 | |
| void ThrowStdOutOfRange(const char* what_arg) {
 | |
|   Throw(std::out_of_range(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdRuntimeError(const std::string& what_arg) {
 | |
|   Throw(std::runtime_error(what_arg));
 | |
| }
 | |
| void ThrowStdRuntimeError(const char* what_arg) {
 | |
|   Throw(std::runtime_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdRangeError(const std::string& what_arg) {
 | |
|   Throw(std::range_error(what_arg));
 | |
| }
 | |
| void ThrowStdRangeError(const char* what_arg) {
 | |
|   Throw(std::range_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdOverflowError(const std::string& what_arg) {
 | |
|   Throw(std::overflow_error(what_arg));
 | |
| }
 | |
| void ThrowStdOverflowError(const char* what_arg) {
 | |
|   Throw(std::overflow_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdUnderflowError(const std::string& what_arg) {
 | |
|   Throw(std::underflow_error(what_arg));
 | |
| }
 | |
| void ThrowStdUnderflowError(const char* what_arg) {
 | |
|   Throw(std::underflow_error(what_arg));
 | |
| }
 | |
| 
 | |
| void ThrowStdBadFunctionCall() { Throw(std::bad_function_call()); }
 | |
| 
 | |
| void ThrowStdBadAlloc() { Throw(std::bad_alloc()); }
 | |
| 
 | |
| }  // namespace base_internal
 | |
| }  // namespace absl
 |