From: Vadim Zeitlin Date: Sat, 19 Sep 2009 16:29:42 +0000 (+0000) Subject: Add curly braces around wxFAIL_MSG() to avoid g++ 4.3 warning. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/01937278246c34d3fce6bbccdb54cad6f908da23 Add curly braces around wxFAIL_MSG() to avoid g++ 4.3 warning. g++ 4.3 warns about lack of explicit braces to make it happy. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/any.h b/include/wx/any.h index 0a5b075c56..e4aacabba9 100644 --- a/include/wx/any.h +++ b/include/wx/any.h @@ -718,7 +718,10 @@ public: T As(T* = NULL) const { if ( !wxAnyValueTypeImpl::IsSameClass(m_type) ) + { wxFAIL_MSG("Incorrect or non-convertible data type"); + } + return static_cast(wxAnyValueTypeImpl::GetValue(m_buffer)); }