3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 09:04:08 +00:00

hashlib: Add missing stdint.h include

We use `uint32_t` `uint64_t` etc. so add an explicit include.
This commit is contained in:
Martin Povišer 2024-02-08 11:15:26 +01:00 committed by Catherine
parent 1236bb65b6
commit 66479a2232

View file

@ -17,6 +17,8 @@
#include <string>
#include <vector>
#include <stdint.h>
namespace hashlib {
const int hashtable_size_trigger = 2;