diff options
author | Mike Buland <eichlan@xagasoft.com> | 2013-07-26 03:24:35 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2013-07-26 03:24:35 +0000 |
commit | 634a6bdcfccd8e3ea94708e396b70597e0ea66c0 (patch) | |
tree | c0fe09eeac300d0b2a018b4fd89f9a7ba7284ce8 /src/stable/list.h | |
parent | 76d8443e8249f77f01c8ccc41e966827f076280f (diff) | |
download | libbu++-634a6bdcfccd8e3ea94708e396b70597e0ea66c0.tar.gz libbu++-634a6bdcfccd8e3ea94708e396b70597e0ea66c0.tar.bz2 libbu++-634a6bdcfccd8e3ea94708e396b70597e0ea66c0.tar.xz libbu++-634a6bdcfccd8e3ea94708e396b70597e0ea66c0.zip |
Fixed some random whining issues, dropped extra char * formatter references,
and fixed a null/integer issue in Bu::Hash
Diffstat (limited to 'src/stable/list.h')
-rw-r--r-- | src/stable/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stable/list.h b/src/stable/list.h index 07b18bf..5ab7117 100644 --- a/src/stable/list.h +++ b/src/stable/list.h | |||
@@ -992,7 +992,7 @@ namespace Bu | |||
992 | }; | 992 | }; |
993 | 993 | ||
994 | class Formatter; | 994 | class Formatter; |
995 | Formatter &operator<<( Formatter &rOut, char *sStr ); | 995 | Formatter &operator<<( Formatter &rOut, const char *sStr ); |
996 | Formatter &operator<<( Formatter &rOut, signed char c ); | 996 | Formatter &operator<<( Formatter &rOut, signed char c ); |
997 | template<typename a, typename b, typename c> | 997 | template<typename a, typename b, typename c> |
998 | Formatter &operator<<( Formatter &f, const Bu::List<a,b,c> &l ) | 998 | Formatter &operator<<( Formatter &f, const Bu::List<a,b,c> &l ) |