Files
boost_array/doc/array/changes.adoc

24 lines
730 B
Plaintext
Raw Normal View History

2025-01-25 18:06:00 +02:00
////
Copyright 2025 Peter Dimov
Distributed under the Boost Software License, Version 1.0.
http://www.boost.org/LICENSE_1_0.txt
////
[#changes]
# Revision History
:toc:
:toc-title:
:idprefix:
## Changes in 1.88.0
* Converted documentation to AsciiDoc (Christian Mazakas).
* Added `noexcept` and `constexpr` as appropriate.
2025-01-26 06:09:05 +02:00
* Marked obsolete functions as deprecated.
* Removed obsolete compiler workarounds.
2025-01-26 20:31:53 +02:00
* Changed `array<T, 0>::begin()`, `cbegin()`, `end()`, `cend()` to return `nullptr`, enabling `constexpr`.
This matches the behavior of `std::array`.
2025-01-26 21:02:26 +02:00
* Removed local `hash_value` overload; `boost::hash` supports array-like types natively.
2025-01-26 22:07:42 +02:00
* `array<T, 0>` can now be initialized with `= {{}}`.
2025-01-27 17:19:06 +02:00
* Added `operator\<\=>`.