namespace std {
template <class R, class Alloc>
struct uses_allocator<promise<R>, Alloc>
: true_type { };
}
概要
uses_allocator
の、promise<R>
に対する特殊化。
例
出力
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.0 ✅
- ICC: ??
- Visual C++: 2012 ✅
namespace std {
template <class R, class Alloc>
struct uses_allocator<promise<R>, Alloc>
: true_type { };
}
uses_allocator
の、promise<R>
に対する特殊化。