Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Apr 1, 2024
1 parent fd9f856 commit 6de3e92
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ namespace xtd::drawing::tests {
assert::is_false(c.is_system_color(), csf_);
assert::is_true(c.is_named_color(), csf_);

assert::are_equal(0x00000000, c.to_argb(), csf_);
assert::are_equal(0x00000000u, c.to_argb(), csf_);
assert::are_equal(known_color::transparent, c.to_known_color(), csf_);
}

Expand Down Expand Up @@ -3766,7 +3766,7 @@ namespace xtd::drawing::tests {
assert::is_false(c.is_system_color(), csf_);
assert::is_true(c.is_named_color(), csf_);

assert::are_equal(0x00000000, c.to_argb(), csf_);
assert::are_equal(0x00000000u, c.to_argb(), csf_);
assert::are_equal(known_color::transparent, c.to_known_color(), csf_);
}

Expand Down

0 comments on commit 6de3e92

Please sign in to comment.