From: Carl Hetherington Date: Mon, 20 Jun 2022 14:18:54 +0000 (+0200) Subject: Remove some debug output. X-Git-Tag: v2.16.15~13 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=9655acbdf359b97c25be20aa72b06ce4ad17a2e7 Remove some debug output. --- diff --git a/test/image_test.cc b/test/image_test.cc index a529a3935..94b7ba017 100644 --- a/test/image_test.cc +++ b/test/image_test.cc @@ -223,7 +223,6 @@ BOOST_AUTO_TEST_CASE (alpha_blend_test_onto_xyz) for (int y = 0; y < 50; ++y) { uint16_t* p = reinterpret_cast(xyz.data()[0]) + (y * xyz.stride()[0] / 2); for (int x = 0; x < 50; ++x) { - std::cout << "x=" << x << ", y=" << y << "\n"; if (4 <= x && x < 12 && 4 <= y && y < 12) { BOOST_REQUIRE_EQUAL(p[0], 45078U); BOOST_REQUIRE_EQUAL(p[1], 34939U);