| 1413 | //----------------------------------------------------------------------------- |
| 1414 | |
| 1415 | static bool IsTrivialStaticClassVarDecl(const DeclRefExpr& declRefExpr) |
| 1416 | { |
| 1417 | if(const VarDecl* vd = GetVarDeclFromDeclRefExpr(declRefExpr)) { |
| 1418 | return IsTrivialStaticClassVarDecl(*vd); |
| 1419 | } |
| 1420 | |
| 1421 | return false; |
| 1422 | } |
| 1423 | //----------------------------------------------------------------------------- |
| 1424 | |
| 1425 | APValue* GetEvaluatedValue(const VarDecl& varDecl) |
no test coverage detected