diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2013-02-18 18:47:54 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2013-02-21 13:22:21 +0100 |
commit | 1951c86395652e8d9190eba8a17fb7ea4a5897b0 (patch) | |
tree | 2623d5613be060ddda2e910c302ad175273163a4 /src/plugins/cpptools/cpptoolseditorsupport.h | |
parent | a9582905608143a9629f14133b487bb60846d0d6 (diff) | |
download | qt-creator-1951c86395652e8d9190eba8a17fb7ea4a5897b0.tar.gz |
Reduce padding in often-used structs
Reduce the padding in some often-used structs for 64bit machines.
32bit machines should also profit from most changes, but to a
lesser degree.
Change-Id: Ic4c67b94e962731de4f31164c52a372d78944ccc
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolseditorsupport.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolseditorsupport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolseditorsupport.h b/src/plugins/cpptools/cpptoolseditorsupport.h index 0836254026..26b2829798 100644 --- a/src/plugins/cpptools/cpptoolseditorsupport.h +++ b/src/plugins/cpptools/cpptoolseditorsupport.h @@ -89,9 +89,9 @@ private: QPointer<TextEditor::ITextEditor> _textEditor; QTimer *_updateDocumentTimer; int _updateDocumentInterval; + unsigned _revision; QFuture<void> _documentParser; QString _cachedContents; - unsigned _revision; }; } // namespace Internal |