X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d154ab3d291c0c1463d77818f07fb8a5bfe6bfb0..00b4e7c946860a23696ea5189c7da2eefbeb3e3b:/include/wx/cmdargs.h diff --git a/include/wx/cmdargs.h b/include/wx/cmdargs.h index e3d74c031a..3f99cb50eb 100644 --- a/include/wx/cmdargs.h +++ b/include/wx/cmdargs.h @@ -136,12 +136,12 @@ private: mutable char **m_argsA; mutable wchar_t **m_argsW; - DECLARE_NO_COPY_CLASS(wxCmdLineArgsArray) + wxDECLARE_NO_COPY_CLASS(wxCmdLineArgsArray); }; // provide global operator overload for compatibility with the existing code // doing things like "if ( condition && argv )" -inline operator&&(bool cond, const wxCmdLineArgsArray& array) +inline bool operator&&(bool cond, const wxCmdLineArgsArray& array) { return cond && !array.IsEmpty(); }