ClangFormat: Fix missing return value warning

Amends f7d8f8b704.

Change-Id: I3e509769a8ef206f295b3b5d8db4448375e62cbb
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Christian Stenger
2021-01-07 07:52:14 +01:00
committed by Eike Ziller
parent a59e04b848
commit 41982acec3

View File

@@ -167,8 +167,8 @@ bool ClangFormatPlugin::initialize(const QStringList &arguments, QString *errorS
"information."), "information."),
Utils::InfoBarEntry::GlobalSuppression::Enabled); Utils::InfoBarEntry::GlobalSuppression::Enabled);
Core::ICore::infoBar()->addInfo(info); Core::ICore::infoBar()->addInfo(info);
return true;
#endif #endif
return true;
} }
} // namespace ClangFormat } // namespace ClangFormat