Another attempt to fix CI

This commit is contained in:
Istvan Haller
2021-08-24 16:18:02 +01:00
parent b7fe8ea654
commit 33a358e4fe

View File

@@ -19,7 +19,7 @@ struct PoolBEntry : Pooled<PoolBEntry>
int field;
PoolBEntry() : field(0){};
PoolBEntry(size_t f) : field(f){};
PoolBEntry(int f) : field(f){};
};
using PoolB = Pool<PoolBEntry, Alloc::StateHandle>;