| 34 | } |
| 35 | |
| 36 | cmValue cmDefinitions::Get(std::string const& key, StackIter begin, |
| 37 | StackIter end) |
| 38 | { |
| 39 | Def const& def = cmDefinitions::GetInternal(key, begin, end, false); |
| 40 | return def.Value ? cmValue(def.Value.str_if_stable()) : nullptr; |
| 41 | } |
| 42 | |
| 43 | void cmDefinitions::Raise(std::string const& key, StackIter begin, |
| 44 | StackIter end) |
nothing calls this directly
no test coverage detected