]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
examples : add missing #include <cstdint> (#798)
authorPhilipp Zabel <redacted>
Sun, 23 Apr 2023 13:52:52 +0000 (15:52 +0200)
committerGitHub <redacted>
Sun, 23 Apr 2023 13:52:52 +0000 (16:52 +0300)
common.cpp uses uint8_t and uint64_t, which are defined in <cstdint>.

examples/common.cpp

index 194ef0ec4b276239a35e740038af8e2815618e31..b852f8bbeb6a0f9f1a2de54494dc04832d727419 100644 (file)
@@ -6,6 +6,7 @@
 #include "dr_wav.h"
 
 #include <cmath>
+#include <cstdint>
 #include <regex>
 
 #ifndef M_PI