diff options
author | miroslav2 <miroslav2@yandex-team.com> | 2022-09-19 13:36:31 +0300 |
---|---|---|
committer | miroslav2 <miroslav2@yandex-team.com> | 2022-09-19 13:36:31 +0300 |
commit | f6fbece613358589c77e5732ea9782ebf4342158 (patch) | |
tree | 1558f49d9b10b679d2b93200e3178aa6b06cca55 | |
parent | abe5a451214c3aea26bec0793e4f404eb1cb9457 (diff) | |
download | ydb-f6fbece613358589c77e5732ea9782ebf4342158.tar.gz |
Conditional suppression for utility class constructor
-rw-r--r-- | contrib/restricted/boost/signals2/LICENSE | 23 | ||||
-rw-r--r-- | contrib/restricted/boost/signals2/README.md | 35 |
2 files changed, 58 insertions, 0 deletions
diff --git a/contrib/restricted/boost/signals2/LICENSE b/contrib/restricted/boost/signals2/LICENSE new file mode 100644 index 00000000000..36b7cd93cdf --- /dev/null +++ b/contrib/restricted/boost/signals2/LICENSE @@ -0,0 +1,23 @@ +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/contrib/restricted/boost/signals2/README.md b/contrib/restricted/boost/signals2/README.md new file mode 100644 index 00000000000..9c5621ba053 --- /dev/null +++ b/contrib/restricted/boost/signals2/README.md @@ -0,0 +1,35 @@ +Signals2, part of collection of the [Boost C++ Libraries](http://github.com/boostorg), is an implementation of a managed signals and slots system. + +### License + +Distributed under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt). + +### Properties + +* C++03 +* Header-Only + +### Build Status + +Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | +:-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | +[`master`](https://github.com/boostorg/signals2/tree/master) | [](https://travis-ci.org/boostorg/signals2) | [](https://ci.appveyor.com/project/jeking3/signals2-db91c/branch/master) | [](https://scan.coverity.com/projects/boostorg-signals2) | [](https://codecov.io/gh/boostorg/signals2/branch/master)| [](https://pdimov.github.io/boostdep-report/master/signals2.html) | [](http://www.boost.org/doc/libs/master/doc/html/signals2.html) | [](http://www.boost.org/development/tests/master/developer/signals2.html) +[`develop`](https://github.com/boostorg/signals2/tree/develop) | [](https://travis-ci.org/boostorg/signals2) | [](https://ci.appveyor.com/project/jeking3/signals2-db91c/branch/develop) | [](https://scan.coverity.com/projects/boostorg-signals2) | [](https://codecov.io/gh/boostorg/signals2/branch/develop) | [](https://pdimov.github.io/boostdep-report/develop/signals2.html) | [](http://www.boost.org/doc/libs/develop/doc/html/signals2.html) | [](http://www.boost.org/development/tests/develop/developer/signals2.html) + +### Directories + +| Name | Purpose | +| ----------- | ------------------------------ | +| `ci` | continuous integration scripts | +| `doc` | documentation | +| `example` | examples | +| `include` | headers | +| `test` | unit tests | + +### More information + +* [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-signals2) +* [Report bugs](https://github.com/boostorg/signals2/issues): Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well. +* Submit your patches as pull requests against **develop** branch. Note that by submitting patches you agree to license your modifications under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt). +* Discussions about the library are held on the [Boost developers mailing list](http://www.boost.org/community/groups.html#main). Be sure to read the [discussion policy](http://www.boost.org/community/policy.html) before posting and add the `[signals2]` tag at the beginning of the subject line. + |