Browse Source

fix header include groups

pull/4/head
Philip Kaufmann 9 years ago
committed by Cory Fields
parent
commit
5207f33f45
  1. 3
      src/script/script.h
  2. 4
      src/serialize.h
  3. 10
      src/util.cpp

3
src/script/script.h

@ -6,6 +6,8 @@
#ifndef BITCOIN_SCRIPT_SCRIPT_H
#define BITCOIN_SCRIPT_SCRIPT_H
#include "crypto/common.h"
#include <assert.h>
#include <climits>
#include <limits>
@ -14,7 +16,6 @@
#include <string.h>
#include <string>
#include <vector>
#include "crypto/common.h"
static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes

4
src/serialize.h

@ -6,6 +6,8 @@
#ifndef BITCOIN_SERIALIZE_H
#define BITCOIN_SERIALIZE_H
#include "compat/endian.h"
#include <algorithm>
#include <assert.h>
#include <ios>
@ -18,8 +20,6 @@
#include <utility>
#include <vector>
#include "compat/endian.h"
class CScript;
static const unsigned int MAX_SIZE = 0x02000000;

10
src/util.cpp

@ -7,11 +7,6 @@
#include "config/bitcoin-config.h"
#endif
#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
#include <pthread.h>
#include <pthread_np.h>
#endif
#include "util.h"
#include "chainparamsbase.h"
@ -23,6 +18,11 @@
#include <stdarg.h>
#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
#include <pthread.h>
#include <pthread_np.h>
#endif
#ifndef WIN32
// for posix_fallocate
#ifdef __linux__

Loading…
Cancel
Save