aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/clangsupport
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@qt.io>2019-02-12 19:49:38 +0100
committerMarco Bubke <marco.bubke@qt.io>2019-02-18 14:29:47 +0000
commitfbadbd3b0d40d19bc0b8a7303cb0dc0d1d031eb0 (patch)
treeb3ce61bd7f757c4574cab79f28048f45cf721f8f /src/libs/clangsupport
parent2887f5e5a9ced381e684b9b40a9a995c46664cb9 (diff)
Observe the cration of extra compiler
We link into the extra compiler factory and notify the PchManager for every extra compiler creation. It enables to monitor if all extra compiler finished. Change-Id: If8da386c88909abd2e0e651e4336865c9dc5bf34 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
Diffstat (limited to 'src/libs/clangsupport')
-rw-r--r--src/libs/clangsupport/filecontainerv2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/clangsupport/filecontainerv2.cpp b/src/libs/clangsupport/filecontainerv2.cpp
index 96cc528750a..af5d89a787b 100644
--- a/src/libs/clangsupport/filecontainerv2.cpp
+++ b/src/libs/clangsupport/filecontainerv2.cpp
@@ -30,9 +30,9 @@ namespace V2 {
QDebug operator<<(QDebug debug, const FileContainer &container)
{
- debug.nospace() << "FileContainer("
- << container.filePath << ", "
+ debug.nospace() << "FileContainer(" << container.filePath << ", "
<< container.commandLineArguments << ", "
+ << container.unsavedFileContent.hasContent() << ", "
<< container.documentRevision;
debug.nospace() << ")";