diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-09-10 20:30:12 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-09-10 20:30:12 +0000 |
commit | c6523112b63839a418648a3107f1b07026b9ce2d (patch) | |
tree | b8785f0f232b1af313a0179fbee7b6abcdf01368 /src/formatter.h | |
parent | 2c1bfa4da2ae809b6580ed1d6cd420cdba2806d0 (diff) | |
download | libbu++-c6523112b63839a418648a3107f1b07026b9ce2d.tar.gz libbu++-c6523112b63839a418648a3107f1b07026b9ce2d.tar.bz2 libbu++-c6523112b63839a418648a3107f1b07026b9ce2d.tar.xz libbu++-c6523112b63839a418648a3107f1b07026b9ce2d.zip |
Hey, minor updates to the formatter and a unit test, nothing important.
Diffstat (limited to '')
-rw-r--r-- | src/formatter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatter.h b/src/formatter.h index 9f407a4..9e25529 100644 --- a/src/formatter.h +++ b/src/formatter.h | |||
@@ -241,7 +241,7 @@ namespace Bu | |||
241 | Formatter &operator<<( Formatter &rOut, bool b ); | 241 | Formatter &operator<<( Formatter &rOut, bool b ); |
242 | 242 | ||
243 | template<typename type> | 243 | template<typename type> |
244 | Formatter &operator<<( Formatter &rOut, type *p ) | 244 | Formatter &operator<<( Formatter &rOut, const type *p ) |
245 | { | 245 | { |
246 | rOut << (ptrdiff_t)(p); | 246 | rOut << (ptrdiff_t)(p); |
247 | return rOut; | 247 | return rOut; |