Revert "Fix use of __libcpp_deallocate in dynarray"

This reverts commit r345234 as it depended on the sized deallocation commit.

llvm-svn: 345240
This commit is contained in:
Eric Christopher 2018-10-25 06:43:56 +00:00
parent 9bbee38db3
commit 9ecdb5a711
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ private:
static inline _LIBCPP_INLINE_VISIBILITY
void __deallocate_value(value_type* __ptr ) noexcept {
_VSTD::__libcpp_deallocate_unsized(static_cast<void *>(__ptr), __alignof(value_type));
_VSTD::__libcpp_deallocate(static_cast<void *>(__ptr), __alignof(value_type));
}
public: