Clean up a few warnings found in Windows.

This commit is contained in:
Jason Turner
2012-05-28 10:48:19 -06:00
parent db8863c736
commit ed15cc1730
4 changed files with 8 additions and 7 deletions

View File

@@ -301,8 +301,8 @@ int main()
passed &= built_in_type_test<int>(5, true);
passed &= built_in_type_test<double>(1.1, true);
passed &= built_in_type_test<char>('a', true);
passed &= built_in_type_test<uint8_t>('a', true);
passed &= built_in_type_test<int64_t>('a', true);
passed &= built_in_type_test<boost::uint8_t>('a', true);
passed &= built_in_type_test<boost::int64_t>('a', true);
passed &= built_in_type_test<bool>(false, false);
passed &= built_in_type_test<std::string>("Hello World", false);