mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-29 07:25:51 +00:00
Make all include paths relative to a root directory:
* Better include path support in the VSProject scons tool. * Various manual fixes to include paths.
This commit is contained in:
@@ -20,23 +20,23 @@
|
||||
#ifndef BEAST_CONTAINER_AGED_ORDERED_CONTAINER_H_INCLUDED
|
||||
#define BEAST_CONTAINER_AGED_ORDERED_CONTAINER_H_INCLUDED
|
||||
|
||||
#include "aged_container_iterator.h"
|
||||
#include "aged_associative_container.h"
|
||||
#include <beast/container/detail/aged_container_iterator.h>
|
||||
#include <beast/container/detail/aged_associative_container.h>
|
||||
|
||||
#include "../aged_container.h"
|
||||
#include <beast/container/aged_container.h>
|
||||
|
||||
#include "../../chrono/abstract_clock.h"
|
||||
#include "../../utility/empty_base_optimization.h"
|
||||
#include <beast/chrono/abstract_clock.h>
|
||||
#include <beast/utility/empty_base_optimization.h>
|
||||
|
||||
#include <boost/intrusive/list.hpp>
|
||||
#include <boost/intrusive/set.hpp>
|
||||
|
||||
#include "../../cxx14/algorithm.h" // <algorithm>
|
||||
#include <beast/cxx14/algorithm.h> // <algorithm>
|
||||
#include <functional>
|
||||
#include <initializer_list>
|
||||
#include <iterator>
|
||||
#include <memory>
|
||||
#include "../../cxx14/type_traits.h" // <type_traits>
|
||||
#include <beast/cxx14/type_traits.h> // <type_traits>
|
||||
#include <utility>
|
||||
|
||||
namespace beast {
|
||||
|
||||
Reference in New Issue
Block a user