Drop variadic templates in unit test for VC11

This commit is contained in:
Glen Fernandes
2014-02-06 17:09:27 -08:00
parent 52a5c422a1
commit e1f170cd49

View File

@@ -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>