aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cppchecksymbols.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <[email protected]>2013-03-27 18:54:03 +0100
committerOswald Buddenhagen <[email protected]>2013-04-03 13:40:39 +0200
commit792303202213b4c90fc670620658aa0551bfc1b3 (patch)
tree721156735347cac46c084d44c5e5e1d782c22d38 /src/plugins/cpptools/cppchecksymbols.cpp
parent4fc706d7e04abcbdd77d1687e9f4fc0971b8eb07 (diff)
fix include style relating to cplusplus libraries
... and adjust INCLUDEPATH accordingly. while i'm at messing with include statements, also re-order the include blocks according to policy and sort them within bigger blocks. Change-Id: I7762abfd7c4ecf59432b99db2f424e4fa25733a5 Reviewed-by: Tobias Hunger <[email protected]> Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/cpptools/cppchecksymbols.cpp')
-rw-r--r--src/plugins/cpptools/cppchecksymbols.cpp21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/plugins/cpptools/cppchecksymbols.cpp b/src/plugins/cpptools/cppchecksymbols.cpp
index fbf27666060..81461311333 100644
--- a/src/plugins/cpptools/cppchecksymbols.cpp
+++ b/src/plugins/cpptools/cppchecksymbols.cpp
@@ -28,27 +28,26 @@
****************************************************************************/
#include "cppchecksymbols.h"
+
#include "cpplocalsymbols.h"
+#include <cplusplus/AST.h>
+#include <cplusplus/Literals.h>
+#include <cplusplus/Names.h>
+#include <cplusplus/Overview.h>
+#include <cplusplus/Scope.h>
#include <cplusplus/SimpleLexer.h>
-
-#include <Names.h>
-#include <Literals.h>
-#include <Symbols.h>
-#include <TranslationUnit.h>
-#include <Scope.h>
-#include <AST.h>
-#include <SymbolVisitor.h>
-#include <Overview.h>
+#include <cplusplus/SymbolVisitor.h>
+#include <cplusplus/Symbols.h>
+#include <cplusplus/TranslationUnit.h>
#include <utils/qtcassert.h>
+#include <utils/runextensions.h>
#include <QCoreApplication>
#include <QThreadPool>
#include <QDebug>
-#include <utils/runextensions.h>
-
// This is for experimeting highlighting ctors/dtors as functions (instead of types).
// Whenever this feature is considered "accepted" the switch below should be permanently
// removed, unless we decide to actually make this a user setting - that is why it's