aboutsummaryrefslogtreecommitdiff
path: root/src/stable/array.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2013-07-26 03:24:35 +0000
committerMike Buland <eichlan@xagasoft.com>2013-07-26 03:24:35 +0000
commit634a6bdcfccd8e3ea94708e396b70597e0ea66c0 (patch)
treec0fe09eeac300d0b2a018b4fd89f9a7ba7284ce8 /src/stable/array.h
parent76d8443e8249f77f01c8ccc41e966827f076280f (diff)
downloadlibbu++-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/array.h')
-rw-r--r--src/stable/array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stable/array.h b/src/stable/array.h
index 9dc718a..eff3ab2 100644
--- a/src/stable/array.h
+++ b/src/stable/array.h
@@ -659,7 +659,7 @@ namespace Bu
659 }; 659 };
660 660
661 class Formatter; 661 class Formatter;
662 Formatter &operator<<( Formatter &rOut, char *sStr ); 662 Formatter &operator<<( Formatter &rOut, const char *sStr );
663 Formatter &operator<<( Formatter &rOut, signed char c ); 663 Formatter &operator<<( Formatter &rOut, signed char c );
664 template<typename value> 664 template<typename value>
665 Formatter &operator<<( Formatter &f, const Bu::Array<value> &a ) 665 Formatter &operator<<( Formatter &f, const Bu::Array<value> &a )