diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2022-08-24 11:00:15 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2022-08-24 11:00:15 +0300 |
commit | fb806af1fc6dd9c94eb05c20fef364d06c83bb34 (patch) | |
tree | ae206e459b625f8229090459a0fd2cc765a204fb /contrib/restricted/boost/system/README.md | |
parent | 60efd6a481feccd39ce6cc2dd013eb4f28419bc6 (diff) | |
download | ydb-fb806af1fc6dd9c94eb05c20fef364d06c83bb34.tar.gz |
Update contrib/restricted/boost/system to 1.80.0
Diffstat (limited to 'contrib/restricted/boost/system/README.md')
-rw-r--r-- | contrib/restricted/boost/system/README.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/restricted/boost/system/README.md b/contrib/restricted/boost/system/README.md new file mode 100644 index 0000000000..3db2a86111 --- /dev/null +++ b/contrib/restricted/boost/system/README.md @@ -0,0 +1,25 @@ +# Boost.System + +The Boost.System library, part of [Boost C++ Libraries](https://boost.org), +implements an extensible framework for error reporting in the form of an +`error_code` class and supporting facilities. + +It has been proposed for the C++11 standard, has been accepted, and +is now available as part of the standard library in the `<system_error>` +header. However, the Boost implementation has continued to evolve and +gain enhancements and additional functionality, such as support for +attaching [source locations](https://www.boost.org/doc/libs/release/libs/assert/doc/html/assert.html#source_location_support) +to `error_code`, and a `result<T>` class that can carry either a value +or an error code. + +See [the documentation of System](http://boost.org/libs/system) for more +information. + +Since `<system_error>` is a relatively undocumented portion of the C++ +standard library, the documentation of Boost.System may be useful to you +even if you use the standard components. + +## License + +Distributed under the +[Boost Software License, Version 1.0](http://boost.org/LICENSE_1_0.txt). |