mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Convert code to use boost::beast
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
|
||||
#include <ripple/basics/contract.h>
|
||||
#include <beast/unit_test/detail/const_container.hpp>
|
||||
#include <beast/core/string.hpp>
|
||||
#include <boost/beast/core/string.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/optional.hpp>
|
||||
#include <map>
|
||||
@@ -41,7 +41,7 @@ using IniFileSections = std::map<std::string, std::vector<std::string>>;
|
||||
*/
|
||||
class Section
|
||||
: public beast::unit_test::detail::const_container <
|
||||
std::map <std::string, std::string, beast::iless>>
|
||||
std::map <std::string, std::string, boost::beast::iless>>
|
||||
{
|
||||
private:
|
||||
std::string name_;
|
||||
@@ -173,7 +173,7 @@ public:
|
||||
class BasicConfig
|
||||
{
|
||||
private:
|
||||
std::map <std::string, Section, beast::iless> map_;
|
||||
std::map <std::string, Section, boost::beast::iless> map_;
|
||||
|
||||
public:
|
||||
/** Returns `true` if a section with the given name exists. */
|
||||
|
||||
Reference in New Issue
Block a user