| 210 | } |
| 211 | |
| 212 | void CopyFrom(const SplitInfo& other) { |
| 213 | feature = other.feature; |
| 214 | gain = other.gain; |
| 215 | left_count = other.left_count; |
| 216 | right_count = other.right_count; |
| 217 | } |
| 218 | |
| 219 | void CopyFrom(const char* buffer) { |
| 220 | std::memcpy(&feature, buffer, sizeof(feature)); |
nothing calls this directly
no outgoing calls
no test coverage detected