Use Qt::endl instead of the deprecated ::endl
ClosedPublic

Authored by heikobecker on Mar 24 2020, 7:40 PM.

Details

Summary

It was deprecated with Qt 5.15.

Depends on D28254.

Test Plan

Builds

Diff Detail

Repository
R368 RSIBreak
Lint
No Linters Available
Unit
No Unit Test Coverage
Build Status
Buildable 24176
Build 24194: arc lint + arc unit
heikobecker requested review of this revision.Mar 24 2020, 7:40 PM
heikobecker created this revision.

the endl is really not needed though, is it? i mean

qWarning() << "Folder does not exist or is not readable: " << folder;

already adds a newline at the end, doesn't it?

Removed the endl

the endl is really not needed though, is it? i mean

qWarning() << "Folder does not exist or is not readable: " << folder;

already adds a newline at the end, doesn't it?

Doh, of course it does. Thanks.

aacid accepted this revision.Mar 25 2020, 10:21 PM
This revision is now accepted and ready to land.Mar 25 2020, 10:21 PM
This revision was automatically updated to reflect the committed changes.