summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Crypto/ec.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-06-09 11:34:43 -0400
committerLioncash <mathew1800@gmail.com>2018-06-09 12:10:05 -0400
commit03414e8e848fd99e2ea83f4466a1cf34c2ad6807 (patch)
tree5a6f4d14864dd717257ddc40e4bc2501c44590db /Source/Core/Common/Crypto/ec.cpp
parent1d87584d69e3fdd730502127274fcbd85cebd591 (diff)
Common: Add header for compiler-specifics
Instead of globbing things under an ambiguous Common.h header, move compiler-specifics over to Compiler.h. This gives us a dedicated home for anything related to compilers that we want to make functional across all compilers that we support. This moves us a little closer to eliminating Common.h entirely.
Diffstat (limited to 'Source/Core/Common/Crypto/ec.cpp')
-rw-r--r--Source/Core/Common/Crypto/ec.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/Core/Common/Crypto/ec.cpp b/Source/Core/Common/Crypto/ec.cpp
index 78cd346ebd..4668293fc4 100644
--- a/Source/Core/Common/Crypto/ec.cpp
+++ b/Source/Core/Common/Crypto/ec.cpp
@@ -7,12 +7,9 @@
// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
#include <algorithm>
-#include <cstdio>
-#include <cstdlib>
-#include <ctime>
-#include <string.h>
+#include <cstring>
-#include "Common/Common.h"
+#include "Common/Compiler.h"
#include "Common/Crypto/bn.h"
#include "Common/Crypto/ec.h"
#include "Common/Random.h"