clang-format set ColumnLimit=0

This commit is contained in:
Allen Winter
2022-10-25 09:13:40 -04:00
parent 4571b4b3d5
commit 4c23dff2e0
4 changed files with 19 additions and 17 deletions

View File

@@ -182,7 +182,8 @@ QT_END_NAMESPACE
inline QDebug operator<<(QDebug debug, const nlohmann::json &j)
{
QDebugStateSaver s(debug);
debug.nospace() << '\n' << j.dump(4).data() << '\n';
debug.nospace() << '\n'
<< j.dump(4).data() << '\n';
return debug;
}