aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2023-02-21 11:50:43 +0100
committerGitHub <noreply@github.com>2023-02-21 11:50:43 +0100
commit03b6fb3ddb29b6487ba5a14a1ac191a368a14c51 (patch)
tree56a55268e8b7110bd00aa7fb01976e3ff6c049f9
parent19fec70aa3a311c22e73532a8d3ecb31ad300869 (diff)
parent825d646196584a99818a408ad6155166a50c4c30 (diff)
downloadnextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.tar.gz
nextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.tar.bz2
nextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.zip
Merge pull request #1103 from rodgert/master
Include <cstdint> in common/kernel/hashlib.h
-rw-r--r--common/kernel/hashlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/kernel/hashlib.h b/common/kernel/hashlib.h
index 2f7357e2..a3fcd4ca 100644
--- a/common/kernel/hashlib.h
+++ b/common/kernel/hashlib.h
@@ -14,6 +14,7 @@
#include <algorithm>
#include <array>
+#include <cstdint>
#include <stdexcept>
#include <string>
#include <vector>