Spaces:
Running
Running
Philipp Zabel
commited on
examples : add missing #include <cstdint> (#798)
Browse filescommon.cpp uses uint8_t and uint64_t, which are defined in <cstdint>.
- examples/common.cpp +1 -0
examples/common.cpp
CHANGED
|
@@ -6,6 +6,7 @@
|
|
| 6 |
#include "dr_wav.h"
|
| 7 |
|
| 8 |
#include <cmath>
|
|
|
|
| 9 |
#include <regex>
|
| 10 |
|
| 11 |
#ifndef M_PI
|
|
|
|
| 6 |
#include "dr_wav.h"
|
| 7 |
|
| 8 |
#include <cmath>
|
| 9 |
+
#include <cstdint>
|
| 10 |
#include <regex>
|
| 11 |
|
| 12 |
#ifndef M_PI
|