Header cleanup.

This commit is contained in:
JoelKatz
2012-02-13 10:48:11 -08:00
parent 3dbbda4b4a
commit b8b78b2c27
5 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
#include "BitcoinUtil.h" #include "BitcoinUtil.h"
#include <stdarg.h> #include <cstdarg>
#include <openssl/rand.h> #include <openssl/rand.h>
#include <time.h> #include <ctime>
#if defined(WIN32) || defined(WIN64) #if defined(WIN32) || defined(WIN64)
#include <windows.h> #include <windows.h>

View File

@@ -1,7 +1,7 @@
#include <iostream> #include <iostream>
#include <stdlib.h> #include <cstdlib>
#include <boost/asio.hpp> #include <boost/asio.hpp>
#include <boost/iostreams/concepts.hpp> #include <boost/iostreams/concepts.hpp>

View File

@@ -1,7 +1,7 @@
#include "NewcoinAddress.h" #include "NewcoinAddress.h"
#include "Config.h" #include "Config.h"
#include "BitcoinUtil.h" #include "BitcoinUtil.h"
#include <assert.h> #include <cassert>
bool NewcoinAddress::SetHash160(const uint160& hash160) bool NewcoinAddress::SetHash160(const uint160& hash160)

View File

@@ -1,6 +1,6 @@
#include "Serializer.h" #include "Serializer.h"
#include "key.h" #include "key.h"
#include <assert.h> #include <cassert>
#include <openssl/ripemd.h> #include <openssl/ripemd.h>
#include <openssl/sha.h> #include <openssl/sha.h>

View File

@@ -6,11 +6,11 @@
#define NEWCOIN_UINT256_H #define NEWCOIN_UINT256_H
#include <limits.h> #include <climits>
#include <string> #include <string>
#include <vector> #include <vector>
#include <stdio.h> #include <cstdio>
#include <string.h> #include <cstring>
#include "types.h" #include "types.h"