Mark LWG#2796 as complete. No functionality change; we had tests that covered it already. Just added comments to the tests
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@302798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -15,6 +15,10 @@
|
||||
|
||||
// ~tuple();
|
||||
|
||||
// C++17 added:
|
||||
// The destructor of tuple shall be a trivial destructor
|
||||
// if (is_trivially_destructible_v<Types> && ...) is true.
|
||||
|
||||
#include <tuple>
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
@@ -15,6 +15,10 @@
|
||||
|
||||
// ~pair()
|
||||
|
||||
// C++17 added:
|
||||
// The destructor of pair shall be a trivial destructor
|
||||
// if (is_trivially_destructible_v<T1> && is_trivially_destructible_v<T2>) is true.
|
||||
|
||||
|
||||
#include <utility>
|
||||
#include <type_traits>
|
||||
|
||||
Reference in New Issue
Block a user