summaryrefslogtreecommitdiff
path: root/Source/cmExportBuildAndroidMKGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-04-11 11:06:28 -0400
committerBrad King <brad.king@kitware.com>2022-04-11 13:40:13 -0400
commit8c65b7042e0e7bca3dc5c0cda8975fd2e9c6dc51 (patch)
tree340fba27fb9bd49f82197ba477939a2ee9bfcd2e /Source/cmExportBuildAndroidMKGenerator.cxx
parent7fc248bde34c529c6f1312a56c7e82303238b9c1 (diff)
downloadcmake-8c65b7042e0e7bca3dc5c0cda8975fd2e9c6dc51.tar.gz
cmExportFileGenerator: Simplify collection of targets missing from export set
Store the list of missing target names in a member instead of threading an explicit reference to it through the call stack.
Diffstat (limited to 'Source/cmExportBuildAndroidMKGenerator.cxx')
-rw-r--r--Source/cmExportBuildAndroidMKGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExportBuildAndroidMKGenerator.cxx b/Source/cmExportBuildAndroidMKGenerator.cxx
index 14419256b1..5d0b208931 100644
--- a/Source/cmExportBuildAndroidMKGenerator.cxx
+++ b/Source/cmExportBuildAndroidMKGenerator.cxx
@@ -4,6 +4,7 @@
#include <sstream>
#include <utility>
+#include <vector>
#include <cmext/algorithm>
@@ -60,7 +61,7 @@ void cmExportBuildAndroidMKGenerator::GenerateImportPropertyCode(
}
void cmExportBuildAndroidMKGenerator::GenerateMissingTargetsCheckCode(
- std::ostream&, const std::vector<std::string>&)
+ std::ostream&)
{
}