Get ready to merge with master.

This commit is contained in:
tamasmeszaros 2019-12-06 09:28:17 +01:00
parent ab7c74245b
commit 1fad91e485
2 changed files with 2 additions and 1 deletions

View file

@ -72,6 +72,7 @@ int main()
static_assert (isIntegral(10), "" );
// would fail to compile: static_assert (isIntegral(10.0), "" );
std::cout << "Integer is integral: " << isIntegral(0) << std::endl;
std::cout << "Floating point is not integral: " << isIntegral(0.0) << std::endl;