From 3370ea39fa730ec22e4a2f5496729543c96cc98b Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 4 Dec 2025 13:17:48 +1100 Subject: Feature [feature-requests:#1564]. Use vector to store FoldMaps as map is not nothrow default constructable. --- src/DBCS.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/DBCS.h') 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; -bool DBCSHasFoldMap(int codePage); -FoldMap *DBCSGetMutableFoldMap(int codePage); +FoldMap *DBCSCreateFoldMap(int codePage); const FoldMap *DBCSGetFoldMap(int codePage); } -- cgit v1.2.3