|
|
|
|
@ -180,14 +180,14 @@ template<std::size_t cols, std::size_t rows, class T> class RectangularMatrix {
|
|
|
|
|
* @see operator[] |
|
|
|
|
*/ |
|
|
|
|
T* data() |
|
|
|
|
#ifndef CORRADE_GCC47_COMPATIBILITY |
|
|
|
|
#if !defined(CORRADE_GCC47_COMPATIBILITY) && !defined(CORRADE_MSVC2013_COMPATIBILITY) |
|
|
|
|
& |
|
|
|
|
#endif |
|
|
|
|
{ return _data[0].data(); } |
|
|
|
|
|
|
|
|
|
/** @overload */ |
|
|
|
|
constexpr const T* data() |
|
|
|
|
#ifndef CORRADE_GCC47_COMPATIBILITY |
|
|
|
|
#if !defined(CORRADE_GCC47_COMPATIBILITY) && !defined(CORRADE_MSVC2013_COMPATIBILITY) |
|
|
|
|
const & |
|
|
|
|
#else |
|
|
|
|
const |
|
|
|
|
|