File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -179,8 +179,9 @@ public struct BitBlob (size_t Bits)
179
179
assert (hexstr.length == (Width * 2 ), ErrorMsg);
180
180
181
181
auto range = hexstr.byChar.map! (std.ascii.toLower ! (char ));
182
- foreach (size_t idx, chunk; range.map! (fromHex).chunks(2 ).retro.enumerate)
183
- this .data[idx] = cast (ubyte )((chunk[0 ] << 4 ) + chunk[1 ]);
182
+ size_t idx;
183
+ foreach (chunk; range.map! (fromHex).chunks(2 ).retro)
184
+ this .data[idx++ ] = cast (ubyte )((chunk[0 ] << 4 ) + chunk[1 ]);
184
185
}
185
186
186
187
/* **************************************************************************
@@ -351,6 +352,13 @@ unittest
351
352
assert (collectException! AssertError (Hash(buff)) ! is null );
352
353
}
353
354
355
+ // Make sure the string parsing works at CTFE
356
+ unittest
357
+ {
358
+ static immutable BitBlob! 256 CTFEability = BitBlob! 256 (GenesisBlockHashStr);
359
+ static assert (CTFEability[] == GenesisBlockHash);
360
+ }
361
+
354
362
version (unittest )
355
363
{
356
364
private :
You can’t perform that action at this time.
0 commit comments