| 385 | } |
| 386 | } |
| 387 | size_t TotalCharge() const override { |
| 388 | size_t total = 0; |
| 389 | for (int s = 0; s < kNumShards; s++) { |
| 390 | total += shard_[s].TotalCharge(); |
| 391 | } |
| 392 | return total; |
| 393 | } |
| 394 | }; |
| 395 | |
| 396 | } // end anonymous namespace |
nothing calls this directly
no test coverage detected