Browse Source

Math: oops, part 2.

pull/183/head^2
Vladimír Vondruš 10 years ago
parent
commit
fc489ff457
  1. 2
      src/Magnum/Math/Test/ColorTest.cpp

2
src/Magnum/Math/Test/ColorTest.cpp

@ -126,7 +126,7 @@ void ColorTest::constructDefault() {
constexpr Color4 b;
constexpr Color4ub c;
CORRADE_COMPARE(b, Color4(0.0f, 0.0f, 0.0f, 0.0f));
CORRADE_COMPARE(c, Color4ub(0, 0, 0, 255));
CORRADE_COMPARE(c, Color4ub(0, 0, 0, 0));
}
void ColorTest::constructZero() {

Loading…
Cancel
Save