diff --git a/src/plugins/projectexplorer/toolchain.cpp b/src/plugins/projectexplorer/toolchain.cpp index e961f63db0bf0dc381f87749db5235feb5b30100..650519a08c55c67fe41350def7415459104f7473 100644 --- a/src/plugins/projectexplorer/toolchain.cpp +++ b/src/plugins/projectexplorer/toolchain.cpp @@ -364,14 +364,12 @@ QList<HeaderPath> WinCEToolChain::systemHeaderPaths() QList<HeaderPath> headerPaths; -#ifdef QTCREATOR_WITH_MSVC_INCLUDES const QStringList includes = env.value("INCLUDE").split(QLatin1Char(';')); foreach (const QString &path, includes) { const HeaderPath headerPath(path, HeaderPath::GlobalHeaderPath); headerPaths.append(headerPath); } -#endif return headerPaths; }