Skip to content

Commit

Permalink
Enable is for type_traits tests cases
Browse files Browse the repository at this point in the history
  • Loading branch information
filipsajdak committed Dec 16, 2023
1 parent ad795fd commit 3988e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regression-tests/mixed-overview-of-is-inspections.cpp2
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ main: () = {
print("3.14f is (close_to(3.14 ))", 3.14f is (close_to(3.14 )), true);
print("3.14 is (close_to(3.14f))", 3.14 is (close_to(3.14f)), true);
}
/*

// type_trait
{
i : int = 42;
Expand All @@ -106,7 +106,7 @@ main: () = {
print("ci{const int} is std::is_integral", ci is std::is_integral, true);
print("ci{const int} is std::is_floating_point", ci is std::is_floating_point, false);
}
*/

// predicate
{
d := 3.14;
Expand Down

0 comments on commit 3988e31

Please sign in to comment.