mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-07 20:02:11 +01:00
39 lines
1.0 KiB
Diff
39 lines
1.0 KiB
Diff
From 6c5b9358ef8a441986ed95e55e112de73c617960 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 316dda8..a74af06 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.44.0
|
|
|