diff options
Diffstat (limited to '')
-rw-r--r-- | src/unit/blob.unit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unit/blob.unit b/src/unit/blob.unit index 6f98cfc..76f4baf 100644 --- a/src/unit/blob.unit +++ b/src/unit/blob.unit | |||
@@ -107,9 +107,9 @@ suite Blob | |||
107 | const char *sDat = "abcdefghijklmnopqrstuvwxyz"; | 107 | const char *sDat = "abcdefghijklmnopqrstuvwxyz"; |
108 | Bu::Blob bDat( sDat ); | 108 | Bu::Blob bDat( sDat ); |
109 | 109 | ||
110 | Bu::Blob::iterator i2; | 110 | Bu::Blob::const_iterator i2; |
111 | const char *sCmp = sDat; | 111 | const char *sCmp = sDat; |
112 | for( Bu::Blob::iterator i = bDat.begin(); i; i++, sCmp++ ) | 112 | for( Bu::Blob::const_iterator i = bDat.begin(); i; i++, sCmp++ ) |
113 | { | 113 | { |
114 | unitTest( *i == *sCmp ); | 114 | unitTest( *i == *sCmp ); |
115 | if( *i == 'k' ) | 115 | if( *i == 'k' ) |