4403017952
- Support r-value arguments - Use variadic templates for arbitrary arguments - Support allocators that are final - Support allocators that use fancy pointers - Support environments with disabled exceptions - Improve compilation times
21 lines
543 B
Plaintext
21 lines
543 B
Plaintext
# Copyright 2007,2008 Tobias Schwinger
|
|
#
|
|
# Copyright 2019 Glen Joseph Fernandes
|
|
# (glenjofe@gmail.com)
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import testing ;
|
|
|
|
run value_factory.cpp ;
|
|
run value_factory_args.cpp ;
|
|
run value_factory_move.cpp ;
|
|
run factory.cpp ;
|
|
run factory_args.cpp ;
|
|
run factory_move.cpp ;
|
|
run factory_with_allocator.cpp ;
|
|
run factory_with_std_allocator.cpp ;
|
|
run factory_allocator_throws.cpp ;
|
|
run factory_default_allocator.cpp : : : <exception-handling>off ;
|