Browse Source

Using CORRADE_INTERNAL_ASSERT() for, ahem, internal issues.

pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
a021e4e209
  1. 2
      src/AbstractImage.cpp

2
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
}

Loading…
Cancel
Save