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.
This commit is contained in:
Dan Raviv
2017-08-26 21:09:00 +03:00
parent 7fd49d01dc
commit 5ac072caa2
3 changed files with 8 additions and 9 deletions

View File

@@ -11,8 +11,8 @@
#include <stdint.h>
#include <memory>
#include "boost/multi_index_container.hpp"
#include "boost/multi_index/ordered_index.hpp"
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
class CBlockIndex;
class CChainParams;