Commit ae0dbfe
authored
Add missing headers (#239)
Two changes:
1. Add `#include <cinttypes>` to `test/cctest/cctest.h`. Without it, on
Linux systems, the following error occurs:
```
note: 'PRId64' is defined in header '<cinttypes>'; did you forget to '#include <cinttypes>'?
```
and similarly for `PRIu64` macro.
2. `double-conversion/bignum-dtoa.h` added as a required header in
`CMakeLists.txt`.
`double-conversion/bignum-dtoa.cc` is added to the library which
references this header.1 parent 374c46b commit ae0dbfe
2 files changed
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| 31 | + | |
31 | 32 | | |
32 | 33 | | |
33 | 34 | | |
| |||
0 commit comments