aboutsummaryrefslogtreecommitdiff
path: root/libcpp/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'libcpp/ChangeLog')
-rw-r--r--libcpp/ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 48acad7..390d8e1 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,30 @@
+2023-06-23 Marek Polacek <polacek@redhat.com>
+
+ * include/cpplib.h (c_lang): Add CXX26 and GNUCXX26.
+ * init.cc (lang_defaults): Add rows for CXX26 and GNUCXX26.
+ (cpp_init_builtins): Set __cplusplus to 202400L for C++26.
+ Set __cplusplus to 202302L for C++23.
+
+2023-06-23 Ben Boeckel <me@benboeckel.net>
+
+ * charset.cc: Allow `UCS_LIMIT` in UTF-8 strings.
+
+2023-06-22 David Malcolm <dmalcolm@redhat.com>
+
+ * charset.cc (get_cppchar_property): New function template, based
+ on...
+ (cpp_wcwidth): ...this function. Rework to use the above.
+ Include "combining-chars.inc".
+ (cpp_is_combining_char): New function
+ Include "printable-chars.inc".
+ (cpp_is_printable_char): New function
+ * combining-chars.inc: New file, generated by
+ contrib/unicode/gen-combining-chars.py.
+ * include/cpplib.h (cpp_is_combining_char): New function decl.
+ (cpp_is_printable_char): New function decl.
+ * printable-chars.inc: New file, generated by
+ contrib/unicode/gen-printable-chars.py.
+
2023-06-20 Lewis Hyatt <lhyatt@gmail.com>
PR c++/66290