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

Function isLowerThanXor

lib/templatesimplifier.cpp:2365–2368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2363 return isLowerThanLogicalAnd(lower) || lower->str() == "&&";
2364}
2365static bool isLowerThanXor(const Token* lower)
2366{
2367 return isLowerThanOr(lower) || lower->str() == "|";
2368}
2369static bool isLowerThanAnd(const Token* lower)
2370{
2371 return isLowerThanXor(lower) || lower->str() == "^";

Callers 3

isLowerThanAndFunction · 0.85
simplifyCalculationsMethod · 0.85

Calls 2

isLowerThanOrFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected