From 5a438ed4742c0be90715d65f3e88d33452dc8755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 30 Jul 2019 14:46:51 +0200 Subject: [PATCH] python: um, why a 8-bit type? --- src/python/magnum/gl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/magnum/gl.cpp b/src/python/magnum/gl.cpp index 3e242fc..f6c2b57 100644 --- a/src/python/magnum/gl.cpp +++ b/src/python/magnum/gl.cpp @@ -321,7 +321,7 @@ void gl(py::module& m) { "Framebuffer", "Framebuffer"}; py::class_{framebuffer, "ColorAttachment", "Color attachment"} - .def(py::init(), "Constructor"); + .def(py::init(), "Constructor"); py::class_{framebuffer, "BufferAttachment", "Buffer attachment"} .def(py::init(), "Color buffer")