diff options
author | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-12 23:05:41 +0300 |
---|---|---|
committer | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-12 23:05:41 +0300 |
commit | 87c7569ea3c8aa5d371e9e3d15a8668c5cfcc4fc (patch) | |
tree | 9fd6fc04a73a1a71a82d73aaad66c86169ba9da0 /contrib/restricted/boost/property_tree | |
parent | 7bde144e5863025eed4f1d14dd4c87568d419d0d (diff) | |
download | ydb-87c7569ea3c8aa5d371e9e3d15a8668c5cfcc4fc.tar.gz |
Reimport boost/uuid as a separate project
Diffstat (limited to 'contrib/restricted/boost/property_tree')
-rw-r--r-- | contrib/restricted/boost/property_tree/README.md | 22 | ||||
-rw-r--r-- | contrib/restricted/boost/property_tree/include/boost/property_tree/exceptions.hpp | 8 |
2 files changed, 26 insertions, 4 deletions
diff --git a/contrib/restricted/boost/property_tree/README.md b/contrib/restricted/boost/property_tree/README.md new file mode 100644 index 0000000000..c1a1318d95 --- /dev/null +++ b/contrib/restricted/boost/property_tree/README.md @@ -0,0 +1,22 @@ +# Maintainer + +This library is currently maintained by [Richard Hodges](mailto:hodges.r@gmail.com) with generous support +from the C++ Alliance. + +# Build Status + +Branch | Status +--------|------- +develop | [![CI](https://github.com/boostorg/property_tree/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/boostorg/property_tree/actions/workflows/ci.yml) +master | [![CI](https://github.com/boostorg/property_tree/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/boostorg/property_tree/actions/workflows/ci.yml) + +# Licence + +This software is distributed under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt). + +# Original Work + +This library is the work of Marcin Kalicinski and Sebastian Redl<br/> + +Copyright (C) 2002-2006 Marcin Kalicinski<br/> +Copyright (C) 2009 Sebastian Redl diff --git a/contrib/restricted/boost/property_tree/include/boost/property_tree/exceptions.hpp b/contrib/restricted/boost/property_tree/include/boost/property_tree/exceptions.hpp index 6435bff85a..de7b5774ea 100644 --- a/contrib/restricted/boost/property_tree/include/boost/property_tree/exceptions.hpp +++ b/contrib/restricted/boost/property_tree/include/boost/property_tree/exceptions.hpp @@ -15,8 +15,8 @@ #include <boost/property_tree/ptree_fwd.hpp> #include <boost/any.hpp> -#include <string> #include <stdexcept> +#include <string> namespace boost { namespace property_tree { @@ -31,7 +31,7 @@ namespace boost { namespace property_tree /// @param what The message to associate with this error. ptree_error(const std::string &what); - ~ptree_error(); + ~ptree_error() BOOST_OVERRIDE; }; @@ -48,7 +48,7 @@ namespace boost { namespace property_tree template<class T> ptree_bad_data(const std::string &what, const T &data); - ~ptree_bad_data(); + ~ptree_bad_data() BOOST_OVERRIDE; /// Retrieve the data associated with this error. This is the source /// value that failed to be translated. You need to explicitly @@ -70,7 +70,7 @@ namespace boost { namespace property_tree template<class T> ptree_bad_path(const std::string &what, const T &path); - ~ptree_bad_path(); + ~ptree_bad_path() BOOST_OVERRIDE; /// Retrieve the invalid path. You need to explicitly specify the /// type of path. |