diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-15 12:20:16 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-15 12:20:16 +0100 |
commit | 379778bde61f8589988cf113ec4c3961b8155b0a (patch) | |
tree | 624271d831bf2b74030bb33ab91f1bbffa4a057a /src/net.cpp | |
parent | 4fc241235c41fbf7f2592dfee11db5b7b71c17ad (diff) |
core: remove includes in .cpp, if header is already in .h
- example: if util.h includes stdint.h, remove it from util.cpp, as
util.h is the first header included in util.cpp
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/net.cpp b/src/net.cpp index 954fe5947c..637f98d782 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -15,9 +15,6 @@ #include "db.h" #include "ui_interface.h" -#include <inttypes.h> -#include <stdint.h> - #ifdef WIN32 #include <string.h> #else |