Rectify the import paths of boost/iterator: (#4293)

- MSVC 19.x reported a warning about import paths in boost for
  function_output_iterator class (boost::function_output_iterator).
- Eliminate that warning by updating the import paths, as suggested by
  the compiler warnings.
This commit is contained in:
Chenna Keshava B S
2023-03-14 21:10:56 -07:00
committed by GitHub
parent cb08f2b6ec
commit 9309b57364
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
#include <ripple/beast/core/LexicalCast.h>
#include <ripple/beast/rfc2616.h>
#include <ripple/overlay/impl/ProtocolVersion.h>
#include <boost/function_output_iterator.hpp>
#include <boost/iterator/function_output_iterator.hpp>
#include <boost/regex.hpp>
#include <algorithm>
#include <functional>

View File

@@ -21,7 +21,7 @@
#include <ripple/beast/hash/hash_append.h>
#include <ripple/beast/hash/uhash.h>
#include <boost/container/flat_set.hpp>
#include <boost/function_output_iterator.hpp>
#include <boost/iterator/function_output_iterator.hpp>
#include <map>
#include <ostream>
#include <string>