BoolFuncNode
| 201 | // BoolFuncNode |
| 202 | // |
| 203 | BoolFuncNode::BoolFuncNode(NodeType type, BoolFunc1 func, NodePtr sub) : |
| 204 | LogicalNode(type), m_func(func), m_sub(std::move(sub)) |
| 205 | {} |
| 206 | |
| 207 | Utils::StatusWithReason BoolFuncNode::prepare(PointLayoutPtr l) |
| 208 | { |
nothing calls this directly
no outgoing calls
no test coverage detected