remove trailing whitespace

This commit is contained in:
Hubert Jarosz
2016-03-09 00:00:52 +01:00
parent 1dad6eca81
commit 4a4f247914
386 changed files with 7664 additions and 7664 deletions

View File

@ -40,9 +40,9 @@ long atomic_conditional_increment( register long * pw ) {
while (true) {
long tmp = static_cast< long const volatile& >( *pw );
if( tmp == 0 )
if( tmp == 0 )
return 0; // if zero, can't add to it anymore
if( InterlockedCompareExchange( pw, tmp + 1, tmp ) == tmp )
if( InterlockedCompareExchange( pw, tmp + 1, tmp ) == tmp )
return tmp+1;
}