summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-07-30 14:13:33 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-07-30 14:13:59 (GMT)
commit40214f0def566238c4930415ba6eaca1d760918e (patch)
tree333ff89cdb154966cb237ef271070d327c6cefdc
parentce0755496721380ddcb1707fe4f4db65833f355f (diff)
parent61ce6a6eeb9164d321663a755b12d2625dfa6cbb (diff)
downloadCMake-40214f0def566238c4930415ba6eaca1d760918e.zip
CMake-40214f0def566238c4930415ba6eaca1d760918e.tar.gz
CMake-40214f0def566238c4930415ba6eaca1d760918e.tar.bz2
Merge topic 'clean-proto'
61ce6a6eeb Source: Delete unused prototypes Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9689
-rw-r--r--Source/cmGlobalVisualStudioGenerator.h3
-rw-r--r--Source/cmSourceFile.h3
-rw-r--r--Source/cmStateDirectory.h4
-rw-r--r--Source/cmTarget.h3
4 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h
index 4746f13..f052413 100644
--- a/Source/cmGlobalVisualStudioGenerator.h
+++ b/Source/cmGlobalVisualStudioGenerator.h
@@ -185,9 +185,6 @@ protected:
VSDependMap VSTargetDepends;
void ComputeVSTargetDepends(cmGeneratorTarget*);
- bool CheckTargetLinks(cmGeneratorTarget& target, const std::string& name);
- std::string GetUtilityForTarget(cmGeneratorTarget& target,
- const std::string&);
virtual std::string WriteUtilityDepend(cmGeneratorTarget const*) = 0;
std::string GetUtilityDepend(const cmGeneratorTarget* target);
using UtilityDependsMap = std::map<cmGeneratorTarget const*, std::string>;
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h
index be2023f..5cacbbc 100644
--- a/Source/cmSourceFile.h
+++ b/Source/cmSourceFile.h
@@ -153,9 +153,6 @@ public:
std::string GetObjectLibrary() const;
private:
- template <typename ValueType>
- void StoreProperty(const std::string& prop, ValueType value);
-
cmSourceFileLocation Location;
cmPropertyMap Properties;
std::unique_ptr<cmCustomCommand> CustomCommand;
diff --git a/Source/cmStateDirectory.h b/Source/cmStateDirectory.h
index 55cc716..6c4711f 100644
--- a/Source/cmStateDirectory.h
+++ b/Source/cmStateDirectory.h
@@ -76,10 +76,6 @@ public:
void AddImportedTargetName(std::string const& name);
private:
- template <typename ValueType>
- void StoreProperty(const std::string& prop, ValueType value,
- cmListFileBacktrace const& lfbt);
-
cmLinkedTree<cmStateDetail::BuildsystemDirectoryStateType>::iterator
DirectoryState;
cmStateSnapshot Snapshot_;
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 347d59b..98cacef 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -336,9 +336,6 @@ public:
bool HasFileSets() const;
private:
- template <typename ValueType>
- void StoreProperty(const std::string& prop, ValueType value);
-
// Internal representation details.
friend class cmGeneratorTarget;