2010-08-22 00:59:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 22:09:02 +00:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 00:59:46 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// is_trivially_copyable
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <cassert>
|
|
|
|
|
2013-07-04 00:10:01 +00:00
|
|
|
template <class T>
|
|
|
|
void test_is_trivially_copyable()
|
|
|
|
{
|
|
|
|
static_assert( std::is_trivially_copyable<T>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<const T>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<volatile T>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<const volatile T>::value, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void test_is_not_trivially_copyable()
|
|
|
|
{
|
|
|
|
static_assert(!std::is_trivially_copyable<T>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<const T>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<volatile T>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<const volatile T>::value, "");
|
|
|
|
}
|
|
|
|
|
2010-08-22 00:59:46 +00:00
|
|
|
struct A
|
|
|
|
{
|
|
|
|
int i_;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct B
|
|
|
|
{
|
|
|
|
int i_;
|
|
|
|
~B() {assert(i_ == 0);}
|
|
|
|
};
|
|
|
|
|
2011-05-13 14:08:16 +00:00
|
|
|
class C
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
C();
|
|
|
|
};
|
|
|
|
|
2010-08-22 00:59:46 +00:00
|
|
|
int main()
|
|
|
|
{
|
2013-07-04 00:10:01 +00:00
|
|
|
test_is_trivially_copyable<int> ();
|
|
|
|
test_is_trivially_copyable<const int> ();
|
|
|
|
test_is_trivially_copyable<A> ();
|
|
|
|
test_is_trivially_copyable<const A> ();
|
|
|
|
test_is_trivially_copyable<C> ();
|
|
|
|
|
|
|
|
test_is_not_trivially_copyable<int&> ();
|
|
|
|
test_is_not_trivially_copyable<const A&> ();
|
|
|
|
test_is_not_trivially_copyable<B> ();
|
2010-08-22 00:59:46 +00:00
|
|
|
}
|