style: reformat C/C++ sources and headers with clang-format
Run clang-format over all project C/C++ source and header files (.c, .cpp, .cc, .h, .hpp, .hh, .m, .mm) under app/ and tests/. Non-source files (svg, qm, qrc, etc.) were not touched.
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
|
||||
TEST(CommonDebug, DebugHandlerFormatsAllLevels)
|
||||
{
|
||||
// Install handler and restore after test
|
||||
QtMessageHandler old = qInstallMessageHandler(olive::DebugHandler);
|
||||
// Install handler and restore after test
|
||||
QtMessageHandler old = qInstallMessageHandler(olive::DebugHandler);
|
||||
|
||||
qDebug() << "debug message";
|
||||
qInfo() << "info message";
|
||||
qWarning() << "warning message";
|
||||
qCritical() << "critical message";
|
||||
qDebug() << "debug message";
|
||||
qInfo() << "info message";
|
||||
qWarning() << "warning message";
|
||||
qCritical() << "critical message";
|
||||
|
||||
qInstallMessageHandler(old);
|
||||
qInstallMessageHandler(old);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user