diff options
author | Mike Buland <eichlan@xagasoft.com> | 2023-07-11 09:24:40 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2023-07-11 09:24:40 -0700 |
commit | 7529ab103b0c20220a5bbe2f2ce5511e04e9acda (patch) | |
tree | cc774309936a1aa377d7b8dc43b5e3e1dac6d381 /src/unit/blob.unit | |
parent | 658b5c946e49d72266377750d6b96107113f7677 (diff) | |
parent | 3424954adfec2b2aa862d8c7ddf8f6adc433b896 (diff) | |
download | libbu++-7529ab103b0c20220a5bbe2f2ce5511e04e9acda.tar.gz libbu++-7529ab103b0c20220a5bbe2f2ce5511e04e9acda.tar.bz2 libbu++-7529ab103b0c20220a5bbe2f2ce5511e04e9acda.tar.xz libbu++-7529ab103b0c20220a5bbe2f2ce5511e04e9acda.zip |
Merge branch 'main' into noshare
Diffstat (limited to 'src/unit/blob.unit')
-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 8b8abe4..8784416 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' ) |