summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraSublimeTextGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-12-01 16:02:29 (GMT)
committerBrad King <brad.king@kitware.com>2021-12-01 16:33:30 (GMT)
commit94a58e502b47c61a71318b18359d505dfafb639a (patch)
tree114d4c42ade17cc99fc94ad88f397c9b480dd1fd /Source/cmExtraSublimeTextGenerator.cxx
parent29c80aec94b3607f3aae82170f0b3d0804de2aea (diff)
downloadCMake-94a58e502b47c61a71318b18359d505dfafb639a.zip
CMake-94a58e502b47c61a71318b18359d505dfafb639a.tar.gz
CMake-94a58e502b47c61a71318b18359d505dfafb639a.tar.bz2
cmLocalGenerator: Remove unused IncludePathStyle infrastructure
It is unused since commit c564a3e3ff (Ninja: Always compile sources using absolute paths, 2021-05-19, v3.21.0-rc1~129^2), which left behind a FIXME comment to eventually remove it.
Diffstat (limited to 'Source/cmExtraSublimeTextGenerator.cxx')
-rw-r--r--Source/cmExtraSublimeTextGenerator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmExtraSublimeTextGenerator.cxx b/Source/cmExtraSublimeTextGenerator.cxx
index fa93b04..19e87d5 100644
--- a/Source/cmExtraSublimeTextGenerator.cxx
+++ b/Source/cmExtraSublimeTextGenerator.cxx
@@ -435,8 +435,7 @@ std::string cmExtraSublimeTextGenerator::ComputeIncludes(
lg->GetIncludeDirectories(includes, target, language, config);
std::string includesString =
- lg->GetIncludeFlags(includes, target, language, config, false,
- cmLocalGenerator::IncludePathStyle::Absolute);
+ lg->GetIncludeFlags(includes, target, language, config, false);
return includesString;
}