File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ BOOST_AUTO_TEST_CASE(identifiers__contains__default__not_zero)
55
55
56
56
BOOST_AUTO_TEST_CASE (identifiers__contains__one_value__expected)
57
57
{
58
- const auto expected = 42u ;
58
+ const intptr_t expected = 42u ;
59
59
identifiers_fixture instance;
60
60
instance.push (reinterpret_cast <void *>(expected));
61
61
BOOST_REQUIRE (instance.contains (expected));
62
62
}
63
63
64
64
BOOST_AUTO_TEST_CASE (identifiers__contains__two_values__expected)
65
65
{
66
- const auto expected1 = 99u ;
67
- const auto expected2 = 42u ;
66
+ const intptr_t expected1 = 99u ;
67
+ const intptr_t expected2 = 42u ;
68
68
identifiers_fixture instance;
69
69
instance.push (reinterpret_cast <void *>(expected1));
70
70
instance.push (reinterpret_cast <void *>(expected2));
You can’t perform that action at this time.
0 commit comments