2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01: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 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// is_standard_layout
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2011-05-13 16:08:16 +02:00
|
|
|
template <class T1, class T2>
|
|
|
|
struct pair
|
|
|
|
{
|
|
|
|
T1 first;
|
|
|
|
T2 second;
|
|
|
|
};
|
|
|
|
|
2010-08-22 02:59:46 +02:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
static_assert( std::is_standard_layout<int>::value, "");
|
2011-05-13 16:08:16 +02:00
|
|
|
static_assert( std::is_standard_layout<int[3]>::value, "");
|
2010-08-22 02:59:46 +02:00
|
|
|
static_assert(!std::is_standard_layout<int&>::value, "");
|
|
|
|
static_assert(!std::is_standard_layout<volatile int&>::value, "");
|
2011-05-13 16:08:16 +02:00
|
|
|
static_assert(( std::is_standard_layout<pair<int, double> >::value), "");
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|