| 25 | |
| 26 | template<class T> |
| 27 | inline void cpp::marshal::View<T>::copyTo(const View<T>& destination) const |
| 28 | { |
| 29 | if (tryCopyTo(destination) == false) |
| 30 | { |
| 31 | hx::Throw(HX_CSTRING("View OOB")); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | template<class T> |
| 36 | inline void cpp::marshal::View<T>::clear() const |