aboutsummaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list.h b/src/list.h
index 785a95c..12b50e5 100644
--- a/src/list.h
+++ b/src/list.h
@@ -766,11 +766,11 @@ namespace Bu
766 class Formatter; 766 class Formatter;
767 Formatter &operator<<( Formatter &rOut, char *sStr ); 767 Formatter &operator<<( Formatter &rOut, char *sStr );
768 Formatter &operator<<( Formatter &rOut, signed char c ); 768 Formatter &operator<<( Formatter &rOut, signed char c );
769 template<typename value> 769 template<typename a, typename b, typename c, typename d>
770 Formatter &operator<<( Formatter &f, const Bu::List<value> &l ) 770 Formatter &operator<<( Formatter &f, const Bu::List<a,b,c,d> &l )
771 { 771 {
772 f << '['; 772 f << '[';
773 for( typename Bu::List<value>::const_iterator i = l.begin(); i; i++ ) 773 for( typename Bu::List<a,b,c,d>::const_iterator i = l.begin(); i; i++ )
774 { 774 {
775 if( i != l.begin() ) 775 if( i != l.begin() )
776 f << ", "; 776 f << ", ";