Skip to content

Commit 9417884

Browse files
committed
Make string parsing CTFEable
1 parent 0d9dc44 commit 9417884

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

source/geod24/bitblob.d

+10-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,9 @@ public struct BitBlob (size_t Bits)
179179
assert(hexstr.length == (Width * 2), ErrorMsg);
180180

181181
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]);
184185
}
185186

186187
/***************************************************************************
@@ -351,6 +352,13 @@ unittest
351352
assert(collectException!AssertError(Hash(buff)) !is null);
352353
}
353354

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+
354362
version (unittest)
355363
{
356364
private:

0 commit comments

Comments
 (0)