From 26430a4199342c269cd379e0bab0b5ee96a7971e Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 5 Jun 2017 19:08:07 +0200 Subject: [PATCH] scan.h: add missing include The include was missing from 644c457 (update for replacement of StmtRange by iterator_range, Fri Dec 11 16:16:57 2015 +0100), but it only became a problem in 4cb06c8 (support inlining of non-outermost call expressions, Thu Mar 2 18:37:43 2017 +0100) because it introduced the inlined_calls.cc file, which includes scan.h, but not config.h, while all other files that include scan.h also include config.h. Signed-off-by: Sven Verdoolaege --- scan.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scan.h b/scan.h index 46eb2b9..dd7f664 100644 --- a/scan.h +++ b/scan.h @@ -21,6 +21,8 @@ #include "summary.h" #include "tree.h" +#include "config.h" + namespace clang { #ifndef HAVE_STMTRANGE -- 2.11.4.GIT