mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
30 lines
1.1 KiB
Diff
30 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)
|