From a021e4e20927de9af42d7bccd91278726c314329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 6 Nov 2012 17:56:29 +0100 Subject: [PATCH] Using CORRADE_INTERNAL_ASSERT() for, ahem, internal issues. --- src/AbstractImage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AbstractImage.cpp b/src/AbstractImage.cpp index 075ff69b3..04f14f2b6 100644 --- a/src/AbstractImage.cpp +++ b/src/AbstractImage.cpp @@ -95,7 +95,7 @@ size_t AbstractImage::pixelSize(Components format, ComponentType type) { case Components::Depth: case Components::StencilIndex: case Components::DepthStencil: - CORRADE_ASSERT(false, "AbstractImage::pixelSize(): unhandled depth/stencil type", 0); + CORRADE_INTERNAL_ASSERT(false); #endif }