| 173 | maxsize = std::max(maxsize, size); |
| 174 | } |
| 175 | void recordErase (Long n) noexcept { |
| 176 | // n: how many times the item to be deleted has been used. |
| 177 | --size; |
| 178 | ++nerase; |
| 179 | maxuse = std::max(maxuse, n); |
| 180 | } |
| 181 | void recordUse () noexcept { ++nuse; } |
| 182 | void print () const { |
| 183 | amrex::Print(Print::AllProcs) << "### " << name << " ###\n" |
no outgoing calls
no test coverage detected