clangsupport: Fix compiler warning about initialization re-ordering

Change-Id: I330940e05fe29632f7cb0628151fdec11708b826
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2019-07-02 14:15:33 +02:00
parent 7b2d41a972
commit 4fc3ee8e5b

View File

@@ -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,