mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-17 03:37:54 -06:00

* Fix build with Xcode 16.3
* Simplify OpenVDB patch, from 930c3acb8e (diff-bc3061cc2fe6c64a3d67c8350330bb3a530d01037faace6da27ad9a12aa03e29)
* Fix CGAL header under clang 19
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=281880
* Fix compile error due to removal of base template for `std::char_traits` in clang 19
https://releases.llvm.org/19.1.0/projects/libcxx/docs/ReleaseNotes.html#deprecations-and-removals
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
--- a/openvdb/openvdb/tree/NodeManager.h 2023-11-01 20:31:11 UTC
|
|
+++ b/openvdb/openvdb/tree/NodeManager.h
|
|
@@ -327,7 +327,7 @@ class NodeList (private)
|
|
void operator()(const NodeRange& range) const
|
|
{
|
|
for (typename NodeRange::Iterator it = range.begin(); it; ++it) {
|
|
- OpT::template eval(mNodeOp, it);
|
|
+ OpT::eval(mNodeOp, it);
|
|
}
|
|
}
|
|
const NodeOp mNodeOp;
|
|
@@ -347,7 +347,7 @@ class NodeList (private)
|
|
void operator()(const NodeRange& range) const
|
|
{
|
|
for (typename NodeRange::Iterator it = range.begin(); it; ++it) {
|
|
- OpT::template eval(mNodeOp, it);
|
|
+ OpT::eval(mNodeOp, it);
|
|
}
|
|
}
|
|
const NodeOp& mNodeOp;
|
|
@@ -372,7 +372,7 @@ class NodeList (private)
|
|
void operator()(const NodeRange& range)
|
|
{
|
|
for (typename NodeRange::Iterator it = range.begin(); it; ++it) {
|
|
- OpT::template eval(*mNodeOp, it);
|
|
+ OpT::eval(*mNodeOp, it);
|
|
}
|
|
}
|
|
void join(const NodeReducer& other)
|