forked from qt-creator/qt-creator
clangsupport: Fix compiler warning about initialization re-ordering
Change-Id: I330940e05fe29632f7cb0628151fdec11708b826 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -98,9 +98,9 @@ public:
|
||||
ClangPathWatcher(FilePathCachingInterface &pathCache,
|
||||
FileSystemInterface &fileSystem,
|
||||
ClangPathWatcherNotifier *notifier = nullptr)
|
||||
: m_pathCache(pathCache)
|
||||
, m_fileStatusCache(fileSystem)
|
||||
: m_fileStatusCache(fileSystem)
|
||||
, m_fileSystem(fileSystem)
|
||||
, m_pathCache(pathCache)
|
||||
, m_notifier(notifier)
|
||||
{
|
||||
QObject::connect(&m_fileSystemWatcher,
|
||||
|
Reference in New Issue
Block a user