mirror of
https://github.com/BlackMATov/meta.hpp.git
synced 2025-12-16 14:09:02 +07:00
examples cleanup
This commit is contained in:
@@ -15,7 +15,6 @@ TEST_CASE("meta/examples/number") {
|
||||
|
||||
{
|
||||
const meta::number_type int_type = meta::resolve_type<int>();
|
||||
REQUIRE(int_type);
|
||||
|
||||
CHECK(int_type.get_flags().has(meta::number_flags::is_signed));
|
||||
CHECK(int_type.get_size() == sizeof(int));
|
||||
@@ -23,7 +22,6 @@ TEST_CASE("meta/examples/number") {
|
||||
|
||||
{
|
||||
const meta::number_type unsigned_type = meta::resolve_type<unsigned>();
|
||||
REQUIRE(unsigned_type);
|
||||
|
||||
CHECK(unsigned_type.get_flags().has(meta::number_flags::is_unsigned));
|
||||
CHECK(unsigned_type.get_size() == sizeof(unsigned));
|
||||
|
||||
Reference in New Issue
Block a user