diff options
author | Neil <nyamatongwe@gmail.com> | 2025-02-23 09:57:48 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-02-23 09:57:48 +1100 |
commit | 6ae5e45a7a09ba2c83477abe3835f274a0b032e6 (patch) | |
tree | 849669bc91a50afc0ec1fae55c1a6404d8278445 /test | |
parent | 82d0352b91087eae247b6b09b1ffd46e5f81069e (diff) | |
download | scintilla-mirror-6ae5e45a7a09ba2c83477abe3835f274a0b032e6.tar.gz |
Feature [feature-requests:#1540]. Remove unused variable.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/testDocument.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/unit/testDocument.cxx b/test/unit/testDocument.cxx index ad1384ee7..e764e209b 100644 --- a/test/unit/testDocument.cxx +++ b/test/unit/testDocument.cxx @@ -69,23 +69,6 @@ const Folding foldings1252[] = { {0xd8, 0xf8, 0x07}, }; -// Table of case folding for non-ASCII bytes in Windows Russian code page 1251 -const Folding foldings1251[] = { - {0x80, 0x90, 0x01}, - {0x81, 0x83, 0x01}, - {0x8a, 0x9a, 0x01}, - {0x8c, 0x9c, 0x04}, - {0xa1, 0xa2, 0x01}, - {0xa3, 0xbc, 0x01}, - {0xa5, 0xb4, 0x01}, - {0xa8, 0xb8, 0x01}, - {0xaa, 0xba, 0x01}, - {0xaf, 0xbf, 0x01}, - {0xb2, 0xb3, 0x01}, - {0xbd, 0xbe, 0x01}, - {0xc0, 0xe0, 0x20}, -}; - std::string ReadFile(const std::string &path) { std::ifstream ifs(path, std::ios::binary); std::string content((std::istreambuf_iterator<char>(ifs)), |