| 61 | |
| 62 | template <typename T, typename U> |
| 63 | cmBTStringRange GetPropertyContent(T const& content, U contentEndPosition) |
| 64 | { |
| 65 | auto end = content.begin() + contentEndPosition; |
| 66 | |
| 67 | auto rbegin = cm::make_reverse_iterator(end); |
| 68 | rbegin = std::find(rbegin, content.rend(), cmStateDetail::PropertySentinel); |
| 69 | |
| 70 | return cmMakeRange(rbegin.base(), end); |
| 71 | } |
| 72 | |
| 73 | template <typename T, typename U> |
| 74 | void AppendEntry(T& content, U& endContentPosition, |
no test coverage detected
searching dependent graphs…