Be consistent in how we include boost headers.

This commit is contained in:
JoelKatz
2012-01-19 18:43:32 -08:00
parent b93613e835
commit 78ad27e6aa
4 changed files with 8 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
#include <vector>
#include "boost/shared_ptr.hpp"
#include <boost/shared_ptr.hpp>
#include "types.h"
#include "uint256.h"

View File

@@ -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;

View File

@@ -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

View File

@@ -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
{