Skip to content

Commit 52a43b0

Browse files
committed
build: Fix fuzz-cuckoocache cross-compiling for Windows with DEBUG=1
1 parent 9212e67 commit 52a43b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/fuzz/cuckoocache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ FUZZ_TARGET(cuckoocache)
3030
{
3131
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
3232
fuzzed_data_provider_ptr = &fuzzed_data_provider;
33-
CuckooCache::cache<bool, RandomHasher> cuckoo_cache{};
33+
CuckooCache::cache<int, RandomHasher> cuckoo_cache{};
3434
if (fuzzed_data_provider.ConsumeBool()) {
3535
const size_t megabytes = fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 16);
3636
cuckoo_cache.setup_bytes(megabytes << 20);

0 commit comments

Comments
 (0)