From 733b5d5ae2c5d625211e2985ac25728ac3f54883 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Mon, 21 Mar 2016 15:45:20 +0900 Subject: Imported Upstream version 1.58.0 Change-Id: If0072143aa26874812e0db6872e1efb10a3e5e94 Signed-off-by: DongHun Kwak --- doc/html/boost/container/uses_allocator.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/boost/container/uses_allocator.html') diff --git a/doc/html/boost/container/uses_allocator.html b/doc/html/boost/container/uses_allocator.html index a72ee2d7a1..176b8c4220 100644 --- a/doc/html/boost/container/uses_allocator.html +++ b/doc/html/boost/container/uses_allocator.html @@ -6,8 +6,8 @@ - - + + @@ -20,7 +20,7 @@

-PrevUpHomeNext +PrevUpHomeNext
@@ -31,13 +31,13 @@

Synopsis

// In header: <boost/container/scoped_allocator.hpp>
 
-template<typename T, typename Alloc> 
+template<typename T, typename Allocator> 
 struct uses_allocator {
 };
-

Description

-

Remark: Automatically detects if T has a nested allocator_type that is convertible from Alloc. Meets the BinaryTypeTrait requirements ([meta.rqmts] 20.4.1). A program may specialize this type to derive from true_type for a T of user-defined type if T does not have a nested allocator_type but is nonetheless constructible using the specified Alloc.

-

Result: derived from true_type if Convertible<Alloc,T::allocator_type> and derived from false_type otherwise.

+

Description

+

Remark: Automatically detects if T has a nested allocator_type that is convertible from Allocator. Meets the BinaryTypeTrait requirements ([meta.rqmts] 20.4.1). A program may specialize this type to define uses_allocator<X>::value as true for a T of user-defined type if T does not have a nested allocator_type but is nonetheless constructible using the specified Allocator.

+

Result: uses_allocator<T, Allocator>::value== true if Convertible<Allocator,T::allocator_type>, false otherwise.

@@ -50,7 +50,7 @@

-PrevUpHomeNext +PrevUpHomeNext
-- cgit v1.2.3