diff options
author | myrtle <gatecat@ds0.me> | 2023-02-21 11:50:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-21 11:50:43 +0100 |
commit | 03b6fb3ddb29b6487ba5a14a1ac191a368a14c51 (patch) | |
tree | 56a55268e8b7110bd00aa7fb01976e3ff6c049f9 /common/kernel/hashlib.h | |
parent | 19fec70aa3a311c22e73532a8d3ecb31ad300869 (diff) | |
parent | 825d646196584a99818a408ad6155166a50c4c30 (diff) | |
download | nextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.tar.gz nextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.tar.bz2 nextpnr-03b6fb3ddb29b6487ba5a14a1ac191a368a14c51.zip |
Merge pull request #1103 from rodgert/master
Include <cstdint> in common/kernel/hashlib.h
Diffstat (limited to 'common/kernel/hashlib.h')
-rw-r--r-- | common/kernel/hashlib.h | 1 |
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> |