1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Rylie Pavlik <rylie@ryliepavlik.com>
Date: Wed, 4 Dec 2024 13:41:53 -0600
Subject: e57: Fix build error from missing include
---
src/external/e57/include/E57Format.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/external/e57/include/E57Format.h b/src/external/e57/include/E57Format.h
index 5c3195e..f0ed01e 100644
--- a/src/external/e57/include/E57Format.h
+++ b/src/external/e57/include/E57Format.h
@@ -34,6 +34,7 @@
#include <cfloat>
#include <memory>
#include <vector>
+#include <cstdint>
#include "E57Exception.h"
|