diff --git a/api/array_view.h b/api/array_view.h index 2d68f1650f..7e01959b01 100644 --- a/api/array_view.h +++ b/api/array_view.h @@ -149,6 +149,10 @@ template { public: using value_type = T; + using reference = value_type&; + using const_reference = const value_type&; + using pointer = value_type*; + using const_pointer = const value_type*; using const_iterator = const T*; // Construct an ArrayView from a pointer and a length.