diff options
| -rw-r--r-- | src/DBCS.cxx | 4 | ||||
| -rw-r--r-- | src/DBCS.h | 1 |
2 files changed, 0 insertions, 5 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]; diff --git a/src/DBCS.h b/src/DBCS.h index ccd71536a..2b66db261 100644 --- a/src/DBCS.h +++ b/src/DBCS.h @@ -42,7 +42,6 @@ struct DBCSPair { using FoldMap = std::array<DBCSPair, 0x8000>; bool DBCSHasFoldMap(int codePage); -void DBCSSetFoldMap(int codePage, const FoldMap &foldMap); FoldMap *DBCSGetMutableFoldMap(int codePage); const FoldMap *DBCSGetFoldMap(int codePage); |
