2
0
mirror of https://github.com/boostorg/atomic.git synced 2026-01-28 19:12:08 +00:00

atomic: remove remaining C99 ints

Remove remaining references to (u)intX_t, use the boost::(u)intX_t ones
instead. Fixes remaining unit test failures on Windows.


[SVN r79670]
This commit is contained in:
Helge Bahmann
2012-07-22 13:05:39 +00:00
parent a7b62d7f46
commit 00a7156487
2 changed files with 8 additions and 8 deletions

View File

@@ -38,10 +38,10 @@ int test_main(int, char *[])
test_enum_api();
test_struct_api<test_struct<uint8_t> >();
test_struct_api<test_struct<uint16_t> >();
test_struct_api<test_struct<uint32_t> >();
test_struct_api<test_struct<uint64_t> >();
test_struct_api<test_struct<boost::uint8_t> >();
test_struct_api<test_struct<boost::uint16_t> >();
test_struct_api<test_struct<boost::uint32_t> >();
test_struct_api<test_struct<boost::uint64_t> >();
test_large_struct_api();