forked from macports/macports-ports
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7a4022
commit c6ce8ce
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From a4edf44280b4456ed9d4267fff27a6040221b566 Mon Sep 17 00:00:00 2001 | ||
From: Sergey Fedorov <[email protected]> | ||
Date: Sun, 1 Dec 2024 08:39:11 +0800 | ||
Subject: [PATCH] gltf_utils.h: add a missing <cstdint> | ||
|
||
--- | ||
src/draco/io/gltf_utils.h | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git src/draco/io/gltf_utils.h src/draco/io/gltf_utils.h | ||
index befbacb..4547d42 100644 | ||
--- src/draco/io/gltf_utils.h | ||
+++ src/draco/io/gltf_utils.h | ||
@@ -21,6 +21,7 @@ | ||
#include <iomanip> | ||
#include <sstream> | ||
#include <string> | ||
+#include <cstdint> | ||
|
||
namespace draco { | ||
|