BCOYOTE_ARRAY_CHECK_INDEX(n) // not here unless LIBCOYOTE_BOUNDS_CHECKING is defined return m_array[n]; } template <typename Type> inline Type array<Type>::operator [] (size_t n) const LIBCOYOTE_ARRAY_EXCEPTIONS { LIBCOYOTE_ARRAY_CHECK_INDEX(n) // not here unless LIBCOYOTE_BOUNDS_CHECKING is defined return m_array[n]; }
As always, I'm interested in your comments.
- Scott