MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / isLowerThanAnd

Function isLowerThanAnd

lib/templatesimplifier.cpp:2369–2372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2367 return isLowerThanOr(lower) || lower->str() == "|";
2368}
2369static bool isLowerThanAnd(const Token* lower)
2370{
2371 return isLowerThanXor(lower) || lower->str() == "^";
2372}
2373static bool isLowerThanShift(const Token* lower)
2374{
2375 return isLowerThanAnd(lower) || lower->str() == "&";

Callers 2

isLowerThanShiftFunction · 0.85

Calls 2

isLowerThanXorFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected