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 <vector>
|
||||||
|
|
||||||
#include "boost/shared_ptr.hpp"
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#ifndef __LOCALACCOUNT__
|
#ifndef __LOCALACCOUNT__
|
||||||
#define __LOCALACCOUNT__
|
#define __LOCALACCOUNT__
|
||||||
|
|
||||||
#include "boost/enable_shared_from_this.hpp"
|
#include <boost/enable_shared_from_this.hpp>
|
||||||
#include "boost/shared_ptr.hpp"
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
class LocalAccountFamily;
|
class LocalAccountFamily;
|
||||||
|
|
||||||
|
|||||||
@@ -9,9 +9,11 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
#include <boost/enable_shared_from_this.hpp>
|
#include <boost/enable_shared_from_this.hpp>
|
||||||
#include <boost/cstdint.hpp>
|
#include <boost/cstdint.hpp>
|
||||||
|
|
||||||
#include "newcoin.pb.h"
|
#include "newcoin.pb.h"
|
||||||
|
|
||||||
// The header size for packed messages
|
// The header size for packed messages
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#ifndef __SCOPEDLOCKHOLDER__
|
#ifndef __SCOPEDLOCKHOLDER__
|
||||||
#define __SCOPEDLOCKHOLDER__
|
#define __SCOPEDLOCKHOLDER__
|
||||||
|
|
||||||
#include "boost/thread/recursive_mutex.hpp"
|
#include <boost/thread/recursive_mutex.hpp>
|
||||||
#include "boost/interprocess/sync/scoped_lock.hpp"
|
#include <boost/interprocess/sync/scoped_lock.hpp>
|
||||||
#include "boost/shared_ptr.hpp"
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
class ScopedLock
|
class ScopedLock
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user