blob: a40c34ee0f2f19979bbc027c167ef42c8969f672 [file] [log] [blame]
Brian Silverman4a2409e2018-08-04 23:24:02 -07001[/
2 Copyright 2009 John Maddock.
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt).
6]
7
8[section:has_new_operator has_new_operator]
9 template <class T>
10 struct has_new_operator : public __tof {};
11
12__inherit If T is a (possibly cv-qualified) type with an overloaded new-operator
13then inherits from __true_type, otherwise inherits from __false_type.
14
15[has_binary_operator_compat] Also known to be broken with the Borland/Codegear compilers.
16
17__std_ref 12.5.
18
19__header ` #include <boost/type_traits/has_new_operator.hpp>` or ` #include <boost/type_traits.hpp>`
20
21__examples
22
23Given:
24
25 class A { void* operator new(std::size_t); };
26 class B { void* operator new(std::size_t, const std::nothrow&); };
27 class C { void* operator new(std::size_t, void*); };
28 class D { void* operator new[](std::size_t); };
29 class E { void* operator new[](std::size_t, const std::nothrow&); };
30 class F { void* operator new[](std::size_t, void*); };
31
32Then:
33
34[:`has_new_operator<A>` inherits from `__true_type`.]
35
36[:`has_new_operator<B>` inherits from `__true_type`.]
37
38[:`has_new_operator<C>` inherits from `__true_type`.]
39
40[:`has_new_operator<D>` inherits from `__true_type`.]
41
42[:`has_new_operator<E>` inherits from `__true_type`.]
43
44[:`has_new_operator<F>` inherits from `__true_type`.]
45
46[endsect]
47