MCPcopy Create free account
hub / github.com/Kitware/CMake / operator==

Function operator==

Source/cmValue.h:160–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158std::ostream& operator<<(std::ostream& o, cmValue v);
159
160inline bool operator==(cmValue l, cmValue r) noexcept
161{
162 return l.Compare(r) == 0;
163}
164inline bool operator!=(cmValue l, cmValue r) noexcept
165{
166 return l.Compare(r) != 0;

Callers

nothing calls this directly

Calls 1

CompareMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…