From acef60446ab3bba656e4c4ae59f7ac670fd5a657 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 26 Jan 2025 20:31:53 +0200 Subject: [PATCH] Update revision history --- doc/array/changes.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/array/changes.adoc b/doc/array/changes.adoc index c98583c..83aa17e 100644 --- a/doc/array/changes.adoc +++ b/doc/array/changes.adoc @@ -16,3 +16,5 @@ http://www.boost.org/LICENSE_1_0.txt * Added `noexcept` and `constexpr` as appropriate. * Marked obsolete functions as deprecated. * Removed obsolete compiler workarounds. +* Changed `array::begin()`, `cbegin()`, `end()`, `cend()` to return `nullptr`, enabling `constexpr`. + This matches the behavior of `std::array`.