| 298 | /* generic value operations */ |
| 299 | |
| 300 | bool Node::has_default_value(const SocketType &input) const |
| 301 | { |
| 302 | const void *src = input.default_value; |
| 303 | void *dst = &get_socket_value<char>(this, input); |
| 304 | return memcmp(dst, src, input.packed_size()) == 0; |
| 305 | } |
| 306 | |
| 307 | void Node::set_default_value(const SocketType &input) |
| 308 | { |
no test coverage detected