aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/DBCS.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2025-12-04 11:18:02 +1100
committerNeil <nyamatongwe@gmail.com>2025-12-04 11:18:02 +1100
commit2f9129b86903d5f0756217fa719d7f1d894acebf (patch)
tree03c58fa320e871d8e31e7d1c58bec3a5f704c4d0 /src/DBCS.cxx
parenta8eb773cf50db96d5cd66aef40292ea13a0ffb64 (diff)
downloadscintilla-mirror-2f9129b86903d5f0756217fa719d7f1d894acebf.tar.gz
Feature [feature-requests:#1564]. Remove DBCSSetFoldMap as never called.
Diffstat (limited to 'src/DBCS.cxx')
-rw-r--r--src/DBCS.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/DBCS.cxx b/src/DBCS.cxx
index f53b8e9ed..f4aaff433 100644
--- a/src/DBCS.cxx
+++ b/src/DBCS.cxx
@@ -107,10 +107,6 @@ bool DBCSHasFoldMap(int codePage) {
return it != cpToFoldMap.end();
}
-void DBCSSetFoldMap(int codePage, const FoldMap &foldMap) {
- cpToFoldMap[codePage] = foldMap;
-}
-
FoldMap *DBCSGetMutableFoldMap(int codePage) {
// Constructs if needed
return &cpToFoldMap[codePage];