From d20303250427de7eb2c336c4340a123e00d897e0 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 17 Dec 2020 13:38:00 +0100 Subject: [PATCH] ClangTools: Re-add clang's own include path Amends ef05f29940. Fixes: QTCREATORBUG-25126 Change-Id: I1340916f3f3488b0d1171f04ae1c9f30149c0c5c Reviewed-by: David Schulz --- src/plugins/cpptools/headerpathfilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cpptools/headerpathfilter.cpp b/src/plugins/cpptools/headerpathfilter.cpp index c0a1c04cf9d..2e010ead5a2 100644 --- a/src/plugins/cpptools/headerpathfilter.cpp +++ b/src/plugins/cpptools/headerpathfilter.cpp @@ -51,7 +51,7 @@ void HeaderPathFilter::process() for (const HeaderPath &headerPath : headerPaths) filterHeaderPath(headerPath); - if (useTweakedHeaderPaths == UseTweakedHeaderPaths::Yes) + if (useTweakedHeaderPaths != UseTweakedHeaderPaths::No) tweakHeaderPaths(); }