diff options
Diffstat (limited to '')
-rw-r--r-- | src/tests/stdstream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/stdstream.cpp b/src/tests/stdstream.cpp index 3aa9005..33d44b7 100644 --- a/src/tests/stdstream.cpp +++ b/src/tests/stdstream.cpp | |||
@@ -26,7 +26,7 @@ int main() | |||
26 | sio << "|" << Fmt( 10, 10, Fmt::Right ) << 123 << "|" << sio.nl; | 26 | sio << "|" << Fmt( 10, 10, Fmt::Right ) << 123 << "|" << sio.nl; |
27 | sio << "+----------+" << sio.nl; | 27 | sio << "+----------+" << sio.nl; |
28 | 28 | ||
29 | sio << Fmt(10,Fmt::Left) << "Hexcode:" << Fmt::ptr() << (&sio) << sio.nl; | 29 | sio << Fmt(10,Fmt::Left) << "Hexcode:" << Fmt::ptr() << (void*)(&sio) << sio.nl; |
30 | 30 | ||
31 | sio << 0.123 << sio.nl; | 31 | sio << 0.123 << sio.nl; |
32 | sio << true << " and then " << false << sio.nl; | 32 | sio << true << " and then " << false << sio.nl; |