//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include #include // max_align_t is a POD type whose alignment requirement is at least as // great as that of every scalar type #include int main() { static_assert(std::is_pod::value, "std::is_pod::value"); static_assert((std::alignment_of::value >= std::alignment_of::value), "std::alignment_of::value >= " "std::alignment_of::value"); static_assert(std::alignment_of::value >= std::alignment_of::value, "std::alignment_of::value >= " "std::alignment_of::value"); static_assert(std::alignment_of::value >= std::alignment_of::value, "std::alignment_of::value >= " "std::alignment_of::value"); }