aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/DBCS.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2025-12-04 13:17:48 +1100
committerNeil <nyamatongwe@gmail.com>2025-12-04 13:17:48 +1100
commit3370ea39fa730ec22e4a2f5496729543c96cc98b (patch)
tree748af799dbc015e1ef5cd93818be9b12f0bc820f /src/DBCS.h
parent2f9129b86903d5f0756217fa719d7f1d894acebf (diff)
downloadscintilla-mirror-3370ea39fa730ec22e4a2f5496729543c96cc98b.tar.gz
Feature [feature-requests:#1564]. Use vector to store FoldMaps as map is not
nothrow default constructable.
Diffstat (limited to 'src/DBCS.h')
-rw-r--r--src/DBCS.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DBCS.h b/src/DBCS.h
index 2b66db261..466d70ec7 100644
--- a/src/DBCS.h
+++ b/src/DBCS.h
@@ -41,8 +41,7 @@ struct DBCSPair {
};
using FoldMap = std::array<DBCSPair, 0x8000>;
-bool DBCSHasFoldMap(int codePage);
-FoldMap *DBCSGetMutableFoldMap(int codePage);
+FoldMap *DBCSCreateFoldMap(int codePage);
const FoldMap *DBCSGetFoldMap(int codePage);
}