Skip to content

Commit 8fc710f

Browse files
authored
Fix compile errors for gcc-14 (#421)
Inclusion of <algorithm> is needed in order to use std::find, but it was missing, leading to compiler errors with gcc-14 on Debian Trixie.
1 parent 01325a7 commit 8fc710f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Tests/CPP_Bindings/Source/Volumetric.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Vulometric.cpp: Defines Unittests for the Volumetric extension
3333
#include "UnitTest_Utilities.h"
3434
#include "lib3mf_implicit.hpp"
3535

36+
#include <algorithm>
37+
3638
namespace Lib3MF
3739
{
3840
namespace helper

0 commit comments

Comments
 (0)