From: Vadim Zeitlin Date: Mon, 14 Sep 2009 08:37:28 +0000 (+0000) Subject: Fix VC6 compilation after r61919. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ade40d72f02de6cdc0d0890eb9ce92a51026291c Fix VC6 compilation after r61919. Work around VC6 bug which resulted in error C2639 when compiling the declaration of an unnamed struct inside wxGridCellAttrProvider. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h index d1bc9a4fe7..029507d7ea 100644 --- a/include/wx/generic/grid.h +++ b/include/wx/generic/grid.h @@ -567,6 +567,9 @@ private: wxGridCellAttrProviderData *m_data; // this struct simply combines together the default header renderers + // + // FIXME-VC6: this struct must be named because of VC6 bug, it fails + // with error C2639 on this struct declaration without it struct { wxGridColumnHeaderRendererDefault colRenderer;