fix some of icc 11.0 warnings and disable a few others
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -279,7 +279,7 @@ private:
|
||||
// the current decoder state: this is only used by ToWChar() if srcLen
|
||||
// parameter is not wxNO_LEN, when working on the entire NUL-terminated
|
||||
// strings we neither update nor use the state
|
||||
class DecoderState : StateMode
|
||||
class DecoderState : private StateMode
|
||||
{
|
||||
private:
|
||||
// current state: this one is private as we want to enforce the use of
|
||||
@@ -311,7 +311,7 @@ private:
|
||||
|
||||
// encoder state is simpler as we always receive entire Unicode characters
|
||||
// on input
|
||||
class EncoderState : StateMode
|
||||
class EncoderState : private StateMode
|
||||
{
|
||||
private:
|
||||
Mode mode;
|
||||
|
Reference in New Issue
Block a user