From a02a794c383ae2381e1210f53174cefb8d94e615 Mon Sep 17 00:00:00 2001 From: Gereon Kremer Date: Wed, 3 Mar 2021 17:50:45 +0100 Subject: More cleanup of includes to reduce compilation times (#6037) Similar to #6031, this PR implements suggestions from iwyu to reduce the number of includes in header files by introducing forward declarations and moving includes to source files. --- src/smt/preprocessor.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/smt/preprocessor.h') diff --git a/src/smt/preprocessor.h b/src/smt/preprocessor.h index 22b585e05..ece5fb5a8 100644 --- a/src/smt/preprocessor.h +++ b/src/smt/preprocessor.h @@ -17,14 +17,16 @@ #ifndef CVC4__SMT__PREPROCESSOR_H #define CVC4__SMT__PREPROCESSOR_H -#include +#include -#include "preprocessing/preprocessing_pass_context.h" #include "smt/expand_definitions.h" #include "smt/process_assertions.h" #include "theory/booleans/circuit_propagator.h" namespace CVC4 { +namespace preprocessing { +class PreprocessingPassContext; +} namespace smt { class AbstractValues; -- cgit v1.2.3