Kaydet (Commit) 540d5e00 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:rangedforcopy (clang-cl)

Change-Id: I468d951007089fefc235e245c3cb4baea4aa51f7
üst 6f95909b
......@@ -837,7 +837,7 @@ bool WinSalInstance::AnyInput( VclInputFlags nType )
~VclInputFlags(VclInputFlags::KEYBOARD | VclInputFlags::TIMER);
std::vector<MsgRange> aMsgRangeList( GetOtherRanges( nOtherType ) );
for ( MsgRange aRange : aMsgRangeList )
for ( MsgRange const & aRange : aMsgRangeList )
if ( PeekMessageW( &aMsg, nullptr, aRange.nStart,
aRange.nEnd, PM_NOREMOVE | PM_NOYIELD ) )
return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment