diff options
Diffstat (limited to 'src/sync.h')
-rw-r--r-- | src/sync.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/sync.h b/src/sync.h index 10e0470a20..39f2cb5155 100644 --- a/src/sync.h +++ b/src/sync.h @@ -2,14 +2,16 @@ // Copyright (c) 2009-2013 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_SYNC_H #define BITCOIN_SYNC_H +#include "threadsafety.h" + +#include <boost/thread/condition_variable.hpp> +#include <boost/thread/locks.hpp> #include <boost/thread/mutex.hpp> #include <boost/thread/recursive_mutex.hpp> -#include <boost/thread/locks.hpp> -#include <boost/thread/condition_variable.hpp> -#include "threadsafety.h" //////////////////////////////////////////////// |