diff options
author | Brad King <brad.king@kitware.com> | 2024-07-30 14:13:33 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-07-30 14:13:59 (GMT) |
commit | 40214f0def566238c4930415ba6eaca1d760918e (patch) | |
tree | 333ff89cdb154966cb237ef271070d327c6cefdc | |
parent | ce0755496721380ddcb1707fe4f4db65833f355f (diff) | |
parent | 61ce6a6eeb9164d321663a755b12d2625dfa6cbb (diff) | |
download | CMake-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.h | 3 | ||||
-rw-r--r-- | Source/cmSourceFile.h | 3 | ||||
-rw-r--r-- | Source/cmStateDirectory.h | 4 | ||||
-rw-r--r-- | Source/cmTarget.h | 3 |
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; |