//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template > // class num_put // : public locale::facet // { // public: // typedef charT char_type; // typedef OutputIterator iter_type; #include #include #include int main() { static_assert((std::is_base_of >::value), ""); static_assert((std::is_base_of >::value), ""); static_assert((std::is_same::char_type, char>::value), ""); static_assert((std::is_same::char_type, wchar_t>::value), ""); static_assert((std::is_same::iter_type, std::ostreambuf_iterator >::value), ""); static_assert((std::is_same::iter_type, std::ostreambuf_iterator >::value), ""); }