aboutsummaryrefslogtreecommitdiff
path: root/src/headers.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2011-12-19 17:08:25 -0500
committerGavin Andresen <gavinandresen@gmail.com>2011-12-19 19:10:34 -0500
commit26ce92b3526430d4a40b2faccef4facb966d6a0a (patch)
treee23a92f6152c3abcf8cf3c42bf5a5b50ecc5dc42 /src/headers.h
parentbd846c0e565ca0db276cb6b7eac7763bebe19b84 (diff)
downloadbitcoin-26ce92b3526430d4a40b2faccef4facb966d6a0a.tar.xz
Use std::numeric_limits<> for typesafe INT_MAX/etc
Diffstat (limited to 'src/headers.h')
-rw-r--r--src/headers.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/headers.h b/src/headers.h
index fd086faee8..b6903fe93e 100644
--- a/src/headers.h
+++ b/src/headers.h
@@ -21,9 +21,6 @@
// Include boost/foreach here as it defines __STDC_LIMIT_MACROS on some systems.
#include <boost/foreach.hpp>
-#ifndef __STDC_LIMIT_MACROS
-#define __STDC_LIMIT_MACROS // to enable UINT64_MAX from stdint.h
-#endif
#if (defined(__unix__) || defined(unix)) && !defined(USG)
#include <sys/param.h> // to get BSD define
@@ -44,7 +41,6 @@
#include <stdlib.h>
#include <time.h>
#include <math.h>
-#include <limits.h>
#include <float.h>
#include <assert.h>
#include <iostream>