Compile warning removed, adding myself to contributors

This commit is contained in:
Arne Beer 2014-04-06 22:03:51 +02:00
parent 50f459d2c0
commit feea2f022f
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@
#
# Please keep the list sorted.
Arne Beer <arne@twobeer.de>
Christopher Seymour <chris.j.seymour@hotmail.com>
David Coeurjolly <david.coeurjolly@liris.cnrs.fr>
Dominic Hamon <dma@stripysock.com>

View File

@ -863,7 +863,7 @@ void Benchmark::RunInstance(const Instance& b, const BenchmarkReporter* br) {
// Run the specified benchmark, measure its peak memory usage, and
// return the peak memory usage.
double Benchmark::MeasurePeakHeapMemory() {
double Benchmark::MeasurePeakHeapMemory(const Instance&) {
if (!get_memory_usage) return 0.0;
double bytes = 0.0;
/* TODO(dominich)