diff options
author | nyamatongwe <devnull@localhost> | 2007-07-25 09:58:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-07-25 09:58:17 +0000 |
commit | 63866c4a3967fd869f87ed699f94ee17531e8881 (patch) | |
tree | 33ce9d88f5bddd18fa01537a9ec0c45f12701357 /src/PositionCache.cxx | |
parent | aaa03c79d3f42fb8bb603bce476af6838be02a4e (diff) | |
download | scintilla-mirror-63866c4a3967fd869f87ed699f94ee17531e8881.tar.gz |
Changed ContractionState data structure to be more efficient by not only
modifying data near an insertion or deletion when there is good locality of
modification.
Diffstat (limited to 'src/PositionCache.cxx')
-rw-r--r-- | src/PositionCache.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 354dddd1a..8e30f5922 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -14,13 +14,13 @@ #include "Scintilla.h" -#include "ContractionState.h" -#include "SVector.h" #include "SplitVector.h" #include "Partitioning.h" +#include "RunStyles.h" +#include "ContractionState.h" +#include "SVector.h" #include "CellBuffer.h" #include "KeyMap.h" -#include "RunStyles.h" #include "Indicator.h" #include "XPM.h" #include "LineMarker.h" |