mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
libsolutil: Add missing include
This helps suppressing the following message during compilation: ``` /builddir/build/BUILD/solidity-0.8.18/libsolutil/Common.h:55:27: error: 'uint8_t' was not declared in this scope 55 | using bytes = std::vector<uint8_t>; | ^~~~~~~ /builddir/build/BUILD/solidity-0.8.18/libsolutil/Common.h:49:1: note: 'uint8_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? 48 | #include <functional> +++ |+#include <cstdint> 49 | #include <string> ``` Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
This commit is contained in:
parent
87f61d960c
commit
8f1668ffb8
@ -42,11 +42,12 @@
|
||||
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
#include <functional>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
#include <string>
|
||||
|
||||
namespace solidity
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user