| 952 | } |
| 953 | |
| 954 | VTK_ITER_INLINE |
| 955 | void CopyReference(const ConstTupleReference& o) noexcept |
| 956 | { |
| 957 | // Must use same array, other array types may use different implementations. |
| 958 | VTK_ITER_ASSERT(this->Array == o.Array, "Cannot copy reference objects between arrays."); |
| 959 | this->NumComps = o.NumComps; |
| 960 | this->TupleId = o.TupleId; |
| 961 | } |
| 962 | |
| 963 | mutable ArrayType* Array; |
| 964 | NumCompsType NumComps; |
no outgoing calls
no test coverage detected