reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/readability/NonConstParameterCheck.cpp
  170     if (B->isAdditiveOp()) {
  172       markCanNotBeConst(B->getLHS(), CanNotBeConst);
  173       markCanNotBeConst(B->getRHS(), CanNotBeConst);
  174     } else if (B->isAssignmentOp()) {
  175       markCanNotBeConst(B->getLHS(), false);
  178       const QualType T = B->getLHS()->getType();
  180         markCanNotBeConst(B->getRHS(), true);