mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-07-31 05:07:21 +02:00
Drop variadic templates in unit test for VC11
This commit is contained in:
@ -39,10 +39,10 @@ public:
|
||||
::operator delete(p1);
|
||||
}
|
||||
|
||||
template<typename U, typename... Args>
|
||||
void construct(U* memory, Args&&... args) {
|
||||
template<typename U>
|
||||
void construct(U* memory) {
|
||||
void* p1 = memory;
|
||||
::new(p1) U(std::forward<Args>(args)...);
|
||||
::new(p1) U();
|
||||
}
|
||||
|
||||
template<typename U>
|
||||
|
Reference in New Issue
Block a user