view: remove non-constexpr debugging call

This commit is contained in:
Danny Robson 2015-09-29 17:31:45 +10:00
parent c037055c95
commit 543da8f15e

View File

@ -116,7 +116,6 @@ template <typename T>
constexpr const typename util::view<T>::value_type&
util::view<T>::operator[] (size_t idx) const noexcept
{
CHECK_LT (m_begin + idx, m_end);
return m_begin[idx];
}