blob: e0b4f336c6637ce59ac03ca5b998c4162a1d45ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Fix "error: 'uint8_t' has not been declared"
--- a/include/indicators/termcolor.hpp
+++ b/include/indicators/termcolor.hpp
@@ -14,6 +14,7 @@
#include <iostream>
#include <cstdio>
+#include <cstdint>
// Detect target's platform and set some macros in order to wrap platform
// specific code this library depends on.
|