Skip to content

Commit

Permalink
iox-eclipse-iceoryx#2055 Fix static_assert type
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Liu <[email protected]>
  • Loading branch information
Dennis40816 committed Jan 14, 2024
1 parent 0caf7b2 commit fa6baea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/test/moduletests/test_utility_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class convert_test : public Test
}
else
{
static_assert("T should be floating point");
static_assert(std::is_floating_point_v<T>, "T should be floating point");
}
}
};
Expand Down

0 comments on commit fa6baea

Please sign in to comment.