mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-11 21:15:12 +02:00
38 lines
1 KiB
Diff
38 lines
1 KiB
Diff
From af7161dfb4324002e27abef7c4f7a6151f26c34a Mon Sep 17 00:00:00 2001
|
|
From: Leon Marz <main@lmarz.org>
|
|
Date: Wed, 27 Mar 2024 10:40:01 +0100
|
|
Subject: [PATCH 2/2] fix includes
|
|
|
|
---
|
|
source/blender/blenkernel/BKE_volume_enums.hh | 2 ++
|
|
source/blender/blenlib/BLI_index_range.hh | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
diff --git a/source/blender/blenkernel/BKE_volume_enums.hh b/source/blender/blenkernel/BKE_volume_enums.hh
|
|
index 3817b52..ebcfa44 100644
|
|
--- a/source/blender/blenkernel/BKE_volume_enums.hh
|
|
+++ b/source/blender/blenkernel/BKE_volume_enums.hh
|
|
@@ -8,6 +8,8 @@
|
|
* \ingroup bli
|
|
*/
|
|
|
|
+#include <cstdint>
|
|
+
|
|
enum VolumeGridType : int8_t {
|
|
VOLUME_GRID_UNKNOWN = 0,
|
|
VOLUME_GRID_BOOLEAN,
|
|
diff --git a/source/blender/blenlib/BLI_index_range.hh b/source/blender/blenlib/BLI_index_range.hh
|
|
index bd9e030..25e9eb7 100644
|
|
--- a/source/blender/blenlib/BLI_index_range.hh
|
|
+++ b/source/blender/blenlib/BLI_index_range.hh
|
|
@@ -38,6 +38,7 @@
|
|
*/
|
|
|
|
#include <algorithm>
|
|
+#include <cstdint>
|
|
#include <iosfwd>
|
|
|
|
#include "BLI_assert.h"
|
|
--
|
|
2.47.0
|
|
|