blob: ea85cde7860a72f2f6c97ede5eed9ebfdf32cfe4 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
// UNSUPPORTED: c++03
// <atomic>
// constexpr atomic<T>::~atomic()
#include <atomic>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
#include "atomic_helpers.h"
template <class Tp>
struct CheckTriviallyDestructible {
void operator()() const {
typedef std::atomic<Tp> Atomic;
static_assert(std::is_trivially_destructible<Atomic>::value, "");
}
};
int main(int, char**) {
TestEachIntegralType<CheckTriviallyDestructible>()();
TestEachFloatingPointType<CheckTriviallyDestructible>()();
TestEachPointerType<CheckTriviallyDestructible>()();
return 0;
}