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

Function operator!=

Source/cmValue.h:164–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162 return l.Compare(r) == 0;
163}
164inline bool operator!=(cmValue l, cmValue r) noexcept
165{
166 return l.Compare(r) != 0;
167}
168inline bool operator<(cmValue l, cmValue r) noexcept
169{
170 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…