llvm::NoopStatistic::operator--

Decrement operators

Synopses

Declared in <llvm/ADT/Statistic.h>

Pre-decrement is a no-op.

NoopStatistic const&
operator--();
» more...

Post-decrement returns zero.

uint64_t
operator--(int Unused);
» more...

Return Value

  • Reference to this statistic.
  • Always zero.

Parameters

NameDescription
UnusedDummy parameter distinguishing postfix from prefix.