forked from qt-creator/qt-creator
Remove spaces in initializer lists
Format initializer lists code style like. Change-Id: Ib82c235e4ba7dc75ee96a7abc0c47eff7b0a9013 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -647,10 +647,10 @@ QString PluginDumper::resolvePlugin(const QDir &qmldirPath, const QString &qmldi
|
||||
QString prefix;
|
||||
if (Utils::HostOsInfo::isWindowsHost()) {
|
||||
// try a qmake-style debug build first
|
||||
validSuffixList = QStringList({ "d.dll", ".dll" });
|
||||
validSuffixList = QStringList({"d.dll", ".dll"});
|
||||
} else if (Utils::HostOsInfo::isMacHost()) {
|
||||
// try a qmake-style debug build first
|
||||
validSuffixList = QStringList({ "_debug.dylib", ".dylib", ".so", ".bundle", "lib" });
|
||||
validSuffixList = QStringList({"_debug.dylib", ".dylib", ".so", ".bundle", "lib"});
|
||||
} else {
|
||||
// Examples of valid library names:
|
||||
// libfoo.so
|
||||
|
||||
Reference in New Issue
Block a user