Remove mention of Boost Property Tree

Fix #2445

Passing mention in documentation could suggest the more apt new boost library (since
1.75.0)
This commit is contained in:
sehe
2022-06-07 00:29:43 +02:00
committed by sehe
parent 925043e1e8
commit c2cff2254a

View File

@@ -73,16 +73,15 @@ something that is not a container for body octets, such as a
[@boost:/libs/filesystem/doc/reference.html#class-path `boost::filesystem::path`].
Or, a more structured container may be chosen. This declares a body's
value type as a JSON tree structure produced from a
[@boost:/doc/html/property_tree/parsers.html#property_tree.parsers.json_parser `boost::property_tree::json_parser`]:
[@boost:/doc/html/json/input_output.html#json.input_output.parsing.streaming_parser `boost::json::stream_parser`]:
```
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/json/stream_parser.hpp>
struct Body
{
using value_type = boost::property_tree::ptree;
using value_type = boost::json::value;
class reader
class reader;
class writer;
};
```