| 33 | constexpr size_t size() const { return array_size; } |
| 34 | constexpr size_t max_size() const { return array_size; } |
| 35 | constexpr bool empty() const { return false; } |
| 36 | |
| 37 | #if !defined(_MSC_VER) // duplicate name mangling issues |
| 38 | constexpr data_type& operator[](const size_t& index) __attribute__((enable_if(__builtin_constant_p(index) && index < array_size, "index is const"))) { |
nothing calls this directly
no outgoing calls
no test coverage detected