]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/type_traits/doc/has_new_operator.qbk
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / type_traits / doc / has_new_operator.qbk
CommitLineData
7c673cae
FG
1[/
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