mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Be consistent in how we include boost headers.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "boost/shared_ptr.hpp"
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include "types.h"
|
||||
#include "uint256.h"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef __LOCALACCOUNT__
|
||||
#define __LOCALACCOUNT__
|
||||
|
||||
#include "boost/enable_shared_from_this.hpp"
|
||||
#include "boost/shared_ptr.hpp"
|
||||
#include <boost/enable_shared_from_this.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
class LocalAccountFamily;
|
||||
|
||||
|
||||
@@ -9,9 +9,11 @@
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
#include <cstdio>
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/enable_shared_from_this.hpp>
|
||||
#include <boost/cstdint.hpp>
|
||||
|
||||
#include "newcoin.pb.h"
|
||||
|
||||
// The header size for packed messages
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#ifndef __SCOPEDLOCKHOLDER__
|
||||
#define __SCOPEDLOCKHOLDER__
|
||||
|
||||
#include "boost/thread/recursive_mutex.hpp"
|
||||
#include "boost/interprocess/sync/scoped_lock.hpp"
|
||||
#include "boost/shared_ptr.hpp"
|
||||
#include <boost/thread/recursive_mutex.hpp>
|
||||
#include <boost/interprocess/sync/scoped_lock.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
class ScopedLock
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user