Work around bogus "use of possibly uninitialized variable" warning.
Resolution::m_x and m_y were always initialized before use but g++ 4.2 still complained about them being possibly not initialized, so do initialize them. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1101,6 +1101,12 @@ bool wxBMPHandler::LoadDib(wxImage *image, wxInputStream& stream,
|
|||||||
Resolution()
|
Resolution()
|
||||||
{
|
{
|
||||||
m_valid = false;
|
m_valid = false;
|
||||||
|
|
||||||
|
// Still initialize them as some compilers are smart enough to
|
||||||
|
// give "use of possibly uninitialized variable" for them (but not
|
||||||
|
// smart enough to see that this is not really the case).
|
||||||
|
m_x =
|
||||||
|
m_y = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Init(int x, int y)
|
void Init(int x, int y)
|
||||||
|
Reference in New Issue
Block a user