From f2cba9cb5798ac287102215965c6d2cef539a9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 17 Jun 2020 20:33:53 +0200 Subject: [PATCH] python: adapt to Magnum changes. --- src/python/magnum/math.matrix.h | 2 +- src/python/magnum/math.vector.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/magnum/math.matrix.h b/src/python/magnum/math.matrix.h index 3fb20d8..47aaec0 100644 --- a/src/python/magnum/math.matrix.h +++ b/src/python/magnum/math.matrix.h @@ -123,7 +123,7 @@ template void everyRectangularMatrixBuffer(py::class_ void everyVectorBuffer(py::class_& throw py::error_already_set{}; } - T out{Math::NoInit}; + T out{NoInit}; initFromBuffer(out, buffer); return out; }), "Construct from a buffer");