From 00a7156487292bfad6524e0b91f96c6f0373fe9f Mon Sep 17 00:00:00 2001 From: Helge Bahmann Date: Sun, 22 Jul 2012 13:05:39 +0000 Subject: [PATCH] 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] --- test/fallback_api.cpp | 8 ++++---- test/native_api.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/fallback_api.cpp b/test/fallback_api.cpp index b195992..bfeb000 100644 --- a/test/fallback_api.cpp +++ b/test/fallback_api.cpp @@ -41,10 +41,10 @@ int test_main(int, char *[]) test_enum_api(); - test_struct_api >(); - test_struct_api >(); - test_struct_api >(); - test_struct_api >(); + test_struct_api >(); + test_struct_api >(); + test_struct_api >(); + test_struct_api >(); test_large_struct_api(); diff --git a/test/native_api.cpp b/test/native_api.cpp index c35a6cf..9e3dcaa 100644 --- a/test/native_api.cpp +++ b/test/native_api.cpp @@ -38,10 +38,10 @@ int test_main(int, char *[]) test_enum_api(); - test_struct_api >(); - test_struct_api >(); - test_struct_api >(); - test_struct_api >(); + test_struct_api >(); + test_struct_api >(); + test_struct_api >(); + test_struct_api >(); test_large_struct_api();