Skip to content

Commit 5841138

Browse files
committed
Update NetworkEditor.h
1 parent 7fc44a0 commit 5841138

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Interface/Application/NetworkEditor.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,10 +485,13 @@ namespace Gui {
485485
template <typename Func>
486486
void tailRecurse(Func p)
487487
{
488+
//TODO: needs C++17. Will enable later on Mac when subnets are closer to working.
489+
#ifdef _WIN32
488490
for (auto& child : childrenNetworks_)
489491
{
490492
std::invoke(p, child.second->get());
491493
}
494+
#endif
492495
}
493496

494497
static NetworkEditor* inEditingContext_;

0 commit comments

Comments
 (0)