diff options
| author | Dan Raviv <[email protected]> | 2017-08-26 21:09:00 +0300 |
|---|---|---|
| committer | Dan Raviv <[email protected]> | 2017-08-26 21:09:00 +0300 |
| commit | 5ac072caa242d7ecf724e0c3a23f4a7c477a3a1e (patch) | |
| tree | a2976be6e6b5d263eb6d7a0576f3f1e91dbe19d6 /src/txmempool.h | |
| parent | Merge #11151: Fix header guards using reserved identifiers (diff) | |
| download | discoin-5ac072caa242d7ecf724e0c3a23f4a7c477a3a1e.tar.xz discoin-5ac072caa242d7ecf724e0c3a23f4a7c477a3a1e.zip | |
Fix boost headers included as user instead of system headers
In most of the project, boost headers are included as system headers.
Fix the few inconsistent places where they aren't.
Diffstat (limited to 'src/txmempool.h')
| -rw-r--r-- | src/txmempool.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 5b0db5266..1ff812092 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -21,11 +21,10 @@ #include "sync.h" #include "random.h" -#include "boost/multi_index_container.hpp" -#include "boost/multi_index/ordered_index.hpp" -#include "boost/multi_index/hashed_index.hpp" +#include <boost/multi_index_container.hpp> +#include <boost/multi_index/hashed_index.hpp> +#include <boost/multi_index/ordered_index.hpp> #include <boost/multi_index/sequenced_index.hpp> - #include <boost/signals2/signal.hpp> class CBlockIndex; |