From a93d221c1289ac3426b04e3ac051ec874c826b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 16 Jan 2022 10:34:09 +0100 Subject: [PATCH] Trade: this comment no longer makes sense. Should have been dropped alongside the changes in 270e93e134718b827c6dc5225a1eaeba7f5e84b5 already. --- src/Magnum/Trade/MeshData.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Magnum/Trade/MeshData.cpp b/src/Magnum/Trade/MeshData.cpp index 1b493b210..9a98d6550 100644 --- a/src/Magnum/Trade/MeshData.cpp +++ b/src/Magnum/Trade/MeshData.cpp @@ -38,9 +38,6 @@ namespace Magnum { namespace Trade { MeshIndexData::MeshIndexData(const MeshIndexType type, const Containers::ArrayView data) noexcept: _type{type}, _data{data} { - /* Yes, this calls into a constexpr function defined in the header -- - because I feel that makes more sense than duplicating the full assert - logic */ CORRADE_ASSERT(data.size()%meshIndexTypeSize(type) == 0, "Trade::MeshIndexData: view size" << data.size() << "does not correspond to" << type, ); }