mirror of https://github.com/YosysHQ/yosys.git
Fix undefined type error in libs/json11/json11.cpp
Under certain conditions, compilation errors out with the following message: "error: ‘uint8_t’ does not name a type" Explicitly including <cstdint> prevents that situation. Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
This commit is contained in:
parent
eac2294cab
commit
fe79a77e39
|
@ -24,6 +24,7 @@
|
|||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <cstdint>
|
||||
#include <limits>
|
||||
|
||||
namespace json11 {
|
||||
|
|
Loading…
Reference in New Issue