| 816 | |
| 817 | template <typename ValueType> |
| 818 | bool UsageRequirementProperty::Write( |
| 819 | cmTargetInternals const* impl, cm::optional<cmListFileBacktrace> const& bt, |
| 820 | std::string const& prop, ValueType value, Action action) |
| 821 | { |
| 822 | if (prop == this->Name) { |
| 823 | this->WriteDirect(impl, bt, value, action); |
| 824 | return true; |
| 825 | } |
| 826 | return false; |
| 827 | } |
| 828 | |
| 829 | template <typename ValueType> |
| 830 | void UsageRequirementProperty::WriteDirect( |
no test coverage detected