2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Update revision history

This commit is contained in:
Peter Dimov
2024-05-17 04:07:14 +03:00
parent 3c267e6199
commit 414c7f9fea

View File

@@ -34,3 +34,6 @@
* Accessors for the timestamp, the time point, the clock sequence, and the node identifier have been added to `uuid`.
* Improved the `what()` strings of the `std::runtime_error` exceptions thrown by `string_generator`.
* Added overloads of `to_chars` taking `Ch* first, Ch* last` and `Ch(&)[N]`.
* The default constructor of `uuid` now produces a nil UUID instead of an uninitialized one.
* `u.data()`, where `u` is of type `uuid`, now returns a pointer to the first `uint8_t` of the representation (same as `u.begin()`.)
For backward compatibility, `data` is a function object with `operator()`, rather than a member function, which allows most existing uses of `data` as a public member to remain valid, if no longer encouraged.