#5101 clang-format: Adjusted penalties

Use lower absolute values to improve control of behavior
This commit is contained in:
Magne Sjaastad
2020-02-12 11:43:15 +01:00
parent 10f0abc9b5
commit c82df63e10
710 changed files with 3167 additions and 4721 deletions

View File

@@ -157,7 +157,8 @@ void RicHoloLensSession::updateSessionDataFromView( const RimGridView& activeVie
// Note!
// The packet directory should now contain all the packets that are being actively referenced.
// We now prune out any packets that are no longer being referenced. This means we do no caching of actual packet
// data over time and that we assume that the server will ask for data packets/arrays right after having received updated meta data
// data over time and that we assume that the server will ask for data packets/arrays right after having received
// updated meta data
m_packetDirectory.pruneUnreferencedPackets( allReferencedPacketIds );
m_lastExtractionMetaDataSequenceNumber++;
@@ -178,8 +179,7 @@ void RicHoloLensSession::updateSessionDataFromView( const RimGridView& activeVie
if ( !outputDir.mkpath( "." ) )
{
RiaLogging::error(
QString( "HoloLens: Could not create debug file export folder: %1" ).arg( absOutputFolder ) );
RiaLogging::error( QString( "HoloLens: Could not create debug file export folder: %1" ).arg( absOutputFolder ) );
return;
}
@@ -280,8 +280,8 @@ void RicHoloLensSession::handleSuccessfulSendMetaData( int metaDat
return;
}
RiaLogging::info( QString( "HoloLens: Start sending data to server, %1 data arrays have been requested" )
.arg( arrayIdsToSend.size() ) );
RiaLogging::info(
QString( "HoloLens: Start sending data to server, %1 data arrays have been requested" ).arg( arrayIdsToSend.size() ) );
size_t totalBytesSent = 0;
size_t totalNumArraysSent = 0;