| 996 | } |
| 997 | |
| 998 | nssv_constexpr const_reference data_at( size_type pos ) const |
| 999 | { |
| 1000 | #if nssv_BETWEEN( nssv_COMPILER_GNUC_VERSION, 1, 500 ) |
| 1001 | return data_[pos]; |
| 1002 | #else |
| 1003 | return assert( pos < size() ), data_[pos]; |
| 1004 | #endif |
| 1005 | } |
| 1006 | |
| 1007 | private: |
| 1008 | const_pointer data_; |
nothing calls this directly
no outgoing calls
no test coverage detected