diff --git a/src/plugins/projectexplorer/toolchain.cpp b/src/plugins/projectexplorer/toolchain.cpp index e961f63db0b..650519a08c5 100644 --- a/src/plugins/projectexplorer/toolchain.cpp +++ b/src/plugins/projectexplorer/toolchain.cpp @@ -364,14 +364,12 @@ QList WinCEToolChain::systemHeaderPaths() QList 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; }