From: Vadim Zeitlin Date: Mon, 21 Sep 2009 08:44:25 +0000 (+0000) Subject: Fix harmless unused variable warning. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7b7ad6a7f2761c850ea085599a9aa44b0da87919 Fix harmless unused variable warning. The value of wxColour::Alpha() was assigned to a temporary variable which wasn't used afterwards and Mac OS g++ warned about it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/graphics/colour.cpp b/tests/graphics/colour.cpp index 6f661b12b4..0269e6bc1b 100644 --- a/tests/graphics/colour.cpp +++ b/tests/graphics/colour.cpp @@ -55,7 +55,7 @@ std::ostream& operator<<(std::ostream& os, const wxColour& c) if ( const unsigned char a = c.Alpha() ) { - os << ", " << ColourChannel(c.Alpha()); + os << ", " << ColourChannel(a); } os << ")";