Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2020-06-19 10:25:17 +0300
committertamasmeszaros <meszaros.q@gmail.com>2020-08-03 20:05:30 +0300
commitf19b3a2344cb499d962b9665a97028b053d98cbc (patch)
treed1a3771a8fa24443c8018e0a6bb1a9a1c602157f /tests
parent301a168b8998d6ffd8389af9729357cd771fc9e4 (diff)
Id-s put in a base class for support tree primitives
Diffstat (limited to 'tests')
-rw-r--r--tests/sla_print/sla_test_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sla_print/sla_test_utils.cpp b/tests/sla_print/sla_test_utils.cpp
index 4cd94b7ed..bc0cfb0cd 100644
--- a/tests/sla_print/sla_test_utils.cpp
+++ b/tests/sla_print/sla_test_utils.cpp
@@ -175,8 +175,8 @@ void check_support_tree_integrity(const sla::SupportTreeBuilder &stree,
double H2 = cfg.max_dual_pillar_height_mm;
for (const sla::Head &head : stree.heads()) {
- REQUIRE((!head.is_valid() || head.pillar_id != sla::ID_UNSET ||
- head.bridge_id != sla::ID_UNSET));
+ REQUIRE((!head.is_valid() || head.pillar_id != sla::SupportTreeNode::ID_UNSET ||
+ head.bridge_id != sla::SupportTreeNode::ID_UNSET));
}
for (const sla::Pillar &pillar : stree.pillars()) {