mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Fix clang warning -Wdouble-promotion (#741)
This commit is contained in:
parent
137367bbd7
commit
f810ce74f3
@ -193,7 +193,7 @@ TEST_CASE("TestNotNullostream")
|
|||||||
{
|
{
|
||||||
ostream_helper<int>(17);
|
ostream_helper<int>(17);
|
||||||
ostream_helper<float>(21.5f);
|
ostream_helper<float>(21.5f);
|
||||||
ostream_helper<double>(3.4566e-7f);
|
ostream_helper<double>(3.4566e-7);
|
||||||
ostream_helper<char>('c');
|
ostream_helper<char>('c');
|
||||||
ostream_helper<uint16_t>(0x0123u);
|
ostream_helper<uint16_t>(0x0123u);
|
||||||
ostream_helper<const char*>("cstring");
|
ostream_helper<const char*>("cstring");
|
||||||
|
Loading…
Reference in New Issue
Block a user