File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ struct TileData
205
205
os << " deltas: " ;
206
206
for (size_t i = 0 ; i < _wids.size (); ++i)
207
207
{
208
- os << i << " : " << _wids[i] << " -> " << _offsets[i] << " " ;
208
+ os << i << " : " << _wids[i] << " -> " << _offsets[i] << ' ' ;
209
209
}
210
210
os << (tooLarge () ? " too-large " : " " );
211
211
}
Original file line number Diff line number Diff line change @@ -441,10 +441,11 @@ class TileCombined
441
441
_tileWidth <= 0 ||
442
442
_tileHeight <= 0 )
443
443
{
444
- throw BadArgumentException (" Invalid tilecombine descriptor. Elements: " +
445
- std::to_string (_part) + " " + std::to_string (_mode) + " " +
446
- std::to_string (_width) + " " + std::to_string (_height) + " " +
447
- std::to_string (_tileWidth) + " " + std::to_string (_tileHeight));
444
+ throw BadArgumentException (
445
+ " Invalid tilecombine descriptor. Elements: " + std::to_string (_part) + ' ' +
446
+ std::to_string (_mode) + ' ' + std::to_string (_width) + ' ' +
447
+ std::to_string (_height) + ' ' + std::to_string (_tileWidth) + ' ' +
448
+ std::to_string (_tileHeight));
448
449
}
449
450
450
451
StringVector positionXtokens (StringVector::tokenize (tilePositionsX, ' ,' ));
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ class TraceFileWriter
274
274
if (_compress)
275
275
{
276
276
_deflater.write (&delim, 1 );
277
- _deflater << " + " << deltaT;
277
+ _deflater << ' + ' << deltaT;
278
278
_deflater.write (&delim, 1 );
279
279
_deflater << id;
280
280
_deflater.write (&delim, 1 );
@@ -286,7 +286,7 @@ class TraceFileWriter
286
286
else
287
287
{
288
288
_stream.write (&delim, 1 );
289
- _stream << " + " << deltaT;
289
+ _stream << ' + ' << deltaT;
290
290
_stream.write (&delim, 1 );
291
291
_stream << id;
292
292
_stream.write (&delim, 1 );
You can’t perform that action at this time.
0 commit comments