diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2022-02-01 19:42:54 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2022-02-02 16:09:00 (GMT) |
commit | bd805a51ae4b5be5be6bbadf4afab108fcf4ddb3 (patch) | |
tree | 9f487e27f9af0ef2b9c092919c1165c85bb4bc11 /Source/cmFindCommon.h | |
parent | 92459258108c0036808f29f83a8503fea18ccee9 (diff) | |
download | CMake-bd805a51ae4b5be5be6bbadf4afab108fcf4ddb3.zip CMake-bd805a51ae4b5be5be6bbadf4afab108fcf4ddb3.tar.gz CMake-bd805a51ae4b5be5be6bbadf4afab108fcf4ddb3.tar.bz2 |
Refactor: Keep track of prefixes in cmSearchPath
Diffstat (limited to 'Source/cmFindCommon.h')
-rw-r--r-- | Source/cmFindCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindCommon.h b/Source/cmFindCommon.h index 49d64e4..6649c35 100644 --- a/Source/cmFindCommon.h +++ b/Source/cmFindCommon.h @@ -135,7 +135,7 @@ protected: std::map<PathLabel, cmSearchPath> LabeledPaths; std::vector<std::string> SearchPaths; - std::set<std::string> SearchPathsEmitted; + std::set<cmSearchPath::PathWithPrefix> SearchPathsEmitted; bool SearchFrameworkFirst; bool SearchFrameworkOnly; |