Last bit of P0006; mark it as complete

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@254290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2015-11-30 05:39:30 +00:00
parent ea972908a3
commit a3866e4c89
3 changed files with 13 additions and 1 deletions

View File

@@ -20,6 +20,10 @@ test()
{
static_assert((std::is_base_of<std::is_floating_point<T>,
std::chrono::treat_as_floating_point<T> >::value), "");
#if TEST_STD_VER > 14
static_assert((std::is_base_of<std::is_floating_point<T>,
std::chrono::treat_as_floating_point_v<T> >), "");
#endif
}
struct A {};