More explicit type conversion to attempt to fix GCC compile issue.

This commit is contained in:
Jeff Young 2020-06-10 13:41:45 +01:00
parent 4138c8554c
commit d7d877241a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ using namespace DRCRULE_T;
DRC_RULES_PARSER::DRC_RULES_PARSER( BOARD* aBoard, const wxString& aSource,
const wxString& aSourceDescr ) :
DRC_RULES_LEXER( aSource, aSourceDescr ),
DRC_RULES_LEXER( aSource.ToStdString(), aSourceDescr ),
m_board( aBoard ),
m_requiredVersion( 0 ),
m_tooRecent( false )