From 0e3c31509944a9c5d09d41cb718826c97a5c24e3 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Mon, 7 Nov 2011 17:44:21 -0800 Subject: [PATCH] vm: move bignum.cpp includes to master.hpp That way they get PCHed --- vm/bignum.cpp | 5 ----- vm/master.hpp | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/vm/bignum.cpp b/vm/bignum.cpp index 3f13a3396b..93bdaf8a1d 100755 --- a/vm/bignum.cpp +++ b/vm/bignum.cpp @@ -50,11 +50,6 @@ #include "master.hpp" -#include - -#include -#include - namespace factor { diff --git a/vm/master.hpp b/vm/master.hpp index 47fcc4dbf6..3eaefc77b8 100755 --- a/vm/master.hpp +++ b/vm/master.hpp @@ -36,6 +36,8 @@ #include #include #include +#include + #define FACTOR_STRINGIZE_I(x) #x #define FACTOR_STRINGIZE(x) FACTOR_STRINGIZE_I(x)