Add readWithPriority to PriorityMPMCQueue
[folly.git] / folly / portability / BitsFunctexcept.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <new>
20
21 #include <folly/Portability.h>
22 #include <folly/portability/Config.h>
23
24 #if FOLLY_HAVE_BITS_FUNCTEXCEPT_H
25
26 #include <bits/functexcept.h>
27
28 #else
29
30 namespace std {
31
32 #if _LIBCPP_VERSION < 4000
33 [[noreturn]] void __throw_length_error(char const* msg);
34 [[noreturn]] void __throw_logic_error(char const* msg);
35 [[noreturn]] void __throw_out_of_range(char const* msg);
36 #endif
37
38 #if _CPPLIB_VER // msvc c++ std lib
39 [[noreturn]] void __throw_bad_alloc();
40 #endif
41 }
42
43 #endif