mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Remove warning
This commit is contained in:
@@ -869,7 +869,7 @@ void cmCursesMainForm::HandleInput()
|
||||
key >= '0' && key <= '9' ||
|
||||
key == '_' )
|
||||
{
|
||||
if ( m_SearchString.size() < x-10 )
|
||||
if ( m_SearchString.size() < static_cast<std::string::size_type>(x-10) )
|
||||
{
|
||||
m_SearchString += key;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user