diff options
author | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2013-03-27 18:54:03 +0100 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2013-04-03 13:40:39 +0200 |
commit | 792303202213b4c90fc670620658aa0551bfc1b3 (patch) | |
tree | 721156735347cac46c084d44c5e5e1d782c22d38 /src/plugins/cpptools/cpprefactoringchanges.h | |
parent | 4fc706d7e04abcbdd77d1687e9f4fc0971b8eb07 (diff) | |
download | qt-creator-792303202213b4c90fc670620658aa0551bfc1b3.tar.gz |
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 <tobias.hunger@digia.com>
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpprefactoringchanges.h')
-rw-r--r-- | src/plugins/cpptools/cpprefactoringchanges.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/cpptools/cpprefactoringchanges.h b/src/plugins/cpptools/cpprefactoringchanges.h index c1b0e10b7e..81382fa770 100644 --- a/src/plugins/cpptools/cpprefactoringchanges.h +++ b/src/plugins/cpptools/cpprefactoringchanges.h @@ -30,15 +30,15 @@ #ifndef CPPREFACTORINGCHANGES_H #define CPPREFACTORINGCHANGES_H -#include <ASTfwd.h> +#include "cpptools_global.h" #include "ModelManagerInterface.h" -#include <cplusplus/CppDocument.h> -#include <cplusplus/LookupContext.h> - -#include <cpptools/cpptools_global.h> #include <texteditor/refactoringchanges.h> +#include <cplusplus/ASTfwd.h> +#include <cplusplus/CppDocument.h> +#include <cplusplus/LookupContext.h> + namespace CppTools { class CppRefactoringChanges; |