Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-21 | Backport: Include header needed for ptrdiff_t. | Mitchell Foral | 7 | -0/+7 | |
Backport of changeset 6635:f59121877e75. | |||||
2018-03-20 | Backport: Add unit tests for UniCoversion. | Neil | 5 | -3/+270 | |
Backport of changeset 6631:dab8d8906cfb. | |||||
2018-03-19 | Backport: Fix warning from MSVC 64-bit. | Neil | 1 | -2/+2 | |
Backport of changeset 6630:9a68a8f20de9. | |||||
2018-03-16 | Backport: Remove line-end white space. | Neil | 6 | -7/+7 | |
Backport of changeset 6625:2dd6b8049c4e. | |||||
2018-02-02 | Backport: Implement SC_DOCUMENTOPTION_STYLES_NONE. | Neil | 1 | -1/+1 | |
Backport of changeset 6448:431b814a54a6. | |||||
2018-02-01 | Backport: Templatize RunStyles so it can be over ranges of different types ↵ | Neil | 1 | -1/+1 | |
and contain different style types. Currently only instantiated over <int, int>. Backport of changeset 6445:89d992f380a1. | |||||
2018-02-01 | Backport: Templatize Partitioning so it can hold different types. | Neil | 1 | -2/+2 | |
Backport of changeset 6444:1bd57324aa36. | |||||
2018-01-21 | Backport: Match variable types to method so will build if switched to 64-bit. | Neil | 1 | -2/+2 | |
Backport of changeset 6430:754319cc6aaa. | |||||
2018-01-21 | Backport: Fix namespace so can build inside Visual C++. | Neil | 1 | -0/+4 | |
Backport of changeset 6429:5ab7cff298f5. | |||||
2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 12 | -0/+24 | |
for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
2017-07-17 | Backport: Ensures tests build after change set 6352. | Neil | 1 | -0/+2 | |
Backport of changeset 6353:90e01a286914. | |||||
2017-06-10 | Backport: Avoid warnings when compiling unit tests with recent GCC. | Neil | 1 | -0/+8 | |
Backport of changeset 6305:f2f32d58bcd8. | |||||
2017-06-09 | Backport: Avoid signed safety warnings from GCC 7. | Neil | 1 | -2/+2 | |
Backport of changeset 6296:c2c63e649256. | |||||
2017-05-21 | Make SparseVector work with move-only types. | Neil | 2 | -20/+66 | |
Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed. | |||||
2017-05-21 | Make SplitVector work with move-only types like unique_ptr. | Neil | 5 | -6/+19 | |
Provide InsertEmpty and both const and non-const reference returning operator[]. Add and fix comments. | |||||
2017-05-10 | Update unit test to match header change. | Neil | 1 | -0/+1 | |
2017-05-02 | Avoid explicit allocation in test. | Neil | 1 | -12/+8 | |
2017-04-29 | Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory | Neil | 1 | -0/+1 | |
and make it easier to modify. Remove out of date warning suppression. | |||||
2017-04-22 | Include <memory> for std::unique_ptr. | Neil | 9 | -0/+9 | |
2017-04-19 | Use =delete for unwanted functions. | Neil | 1 | -2/+2 | |
2017-04-03 | Fix test which was broken by encapsulation of revision 6195. | Neil | 1 | -1/+1 | |
2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 8 | -9/+8 | |
where it may be needed in the future. | |||||
2017-03-16 | Fix use-after-free in fold tags when top line folded then new top line inserted. | Neil | 1 | -0/+12 | |
In SparseVector, string inserted at start then NULL inserted at start. | |||||
2017-02-04 | Ensure std::cerr is available in automated tests. | Neil | 1 | -0/+1 | |
2016-10-18 | Add SparseVector template as a new data structure for storing per-line data | Neil | 1 | -0/+185 | |
which is 0 or NULL for most lines. | |||||
2016-10-18 | Visual Studio project for running unit tests makes it easier to debug them. | Neil | 3 | -0/+218 | |
Debugging visualizer for SplitVector helps understand state of objects. | |||||
2016-10-08 | Fix minor warnings in unit tests from MSVC 64-bit. | Neil | 4 | -27/+27 | |
2016-09-30 | Enable SplitVector to store objects by using std::copy to copy elements instead | Neil | 1 | -0/+104 | |
of memmove and memcpy. This allows SplitVector<std::string> to work. | |||||
2016-09-07 | Add test cases for WordList::InListAbbreviated. | oirfeodent | 1 | -0/+16 | |
2016-09-07 | Add InListAbridged to WordList. | oirfeodent | 1 | -0/+22 | |
2016-08-25 | Add unit tests for WordList class. | Neil | 3 | -0/+34 | |
2015-07-27 | Add Position.h as a place-holder and to allow #include "Position.h" in source. | Neil | 6 | -0/+6 | |
2015-07-04 | Unit tests need to see std::exception now. | Neil | 3 | -0/+3 | |
2014-12-22 | Avoid warning from cppcheck. | Neil | 1 | -3/+2 | |
2014-12-22 | Replace function UnicodeFromBytes with UnicodeFromUTF8 as they are exactly the | Neil | 2 | -0/+45 | |
same. Add unit tests for UnicodeFromUTF8. | |||||
2014-05-21 | Updated to current version of Catch as fixes issues reported by undefined | Neil | 1 | -555/+398 | |
behaviour sanitizer. | |||||
2014-05-15 | Don't try to use sanitizers on OS X as not built into Clang. | Neil Hodgson | 1 | -2/+5 | |
2014-05-15 | Support Clang on Linux and turn on the address and undefined behaviour | Neil | 1 | -1/+6 | |
sanitizers. | |||||
2014-05-15 | Update Catch unit testing framework to current build 43 as it avoids some | Neil | 1 | -1989/+3048 | |
warnings from Clang. | |||||
2014-01-14 | Avoid warnings from cppcheck for testing code. | Neil | 1 | -0/+2 | |
2013-11-18 | Added necessary header. | Unknown | 1 | -1/+2 | |
2013-11-18 | Add some tests for CellBuffer. | Neil | 4 | -1/+152 | |
2013-11-18 | Add some tests for DecorationList. | Neil | 2 | -1/+45 | |
2013-11-17 | Added tests for Decoration. | Neil | 4 | -2/+52 | |
2013-11-17 | Switch unit tests to Catch framework. | Neil | 13 | -1022/+8833 | |
2013-04-19 | Using std::fill instead of a loop is much faster. As much as 4x on a large ↵ | nyamatongwe | 4 | -0/+8 | |
block. | |||||
2013-04-15 | Update tests for last change to RunStyles as it no longer throws in FillRange. | nyamatongwe | 1 | -5/+1 | |
2013-04-15 | RunStyles can be corrupted by filling 0 length ranges and ranges that go ↵ | nyamatongwe | 1 | -0/+18 | |
past end so throw std::invalid_argument exceptions for these conditions. Provide a Check method to validate the consistency of a RunStyles and throw std::runtime_error if corruption is detected. | |||||
2012-09-12 | Fix bug where removing all characters from indicator at end of document did | nyamatongwe | 1 | -0/+31 | |
not remove that run causing iteration over the indicator to hang. | |||||
2012-05-29 | add CharClassifier::GetCharsOfClass | Mook | 2 | -1/+111 | |
add SCI_GETWORDCHARS(<unused>, stringresult chars) command to get word chars add SCI_GETWHITESPACECHARS(<unused>, stringresult chars) to get whitespace chars add SCI_GETPUNCTUATIONCHARS(<unused>, stringresult chars) to get punctutation also add tests for {Set,Get}{Word,Whitespce,Punctuation}Chars, CharClassifier |