| Index: bench/TimerData.cpp
|
| diff --git a/bench/TimerData.cpp b/bench/TimerData.cpp
|
| index 18d41e4de115dc8cdc521d824de659d08e1177a2..3b4baacfcde4aac38fa842c770c892214b8451b5 100644
|
| --- a/bench/TimerData.cpp
|
| +++ b/bench/TimerData.cpp
|
| @@ -20,16 +20,15 @@ TimerData::TimerData(const SkString& perIterTimeFormat, const SkString& normalTi
|
| , fTruncatedCpuStr(" Cmsecs = ")
|
| , fGpuStr(" gmsecs = ")
|
| , fWallSum(0.0)
|
| -, fWallMin((numeric_limits<double>::max)()) // Extra parens to make the windows build work, due to
|
| - // 'max' macro
|
| +, fWallMin(numeric_limits<double>::max())
|
| , fTruncatedWallSum(0.0)
|
| -, fTruncatedWallMin((numeric_limits<double>::max)())
|
| +, fTruncatedWallMin(numeric_limits<double>::max())
|
| , fCpuSum(0.0)
|
| -, fCpuMin((numeric_limits<double>::max)())
|
| +, fCpuMin(numeric_limits<double>::max())
|
| , fTruncatedCpuSum(0.0)
|
| -, fTruncatedCpuMin((numeric_limits<double>::max)())
|
| +, fTruncatedCpuMin(numeric_limits<double>::max())
|
| , fGpuSum(0.0)
|
| -, fGpuMin((numeric_limits<double>::max)())
|
| +, fGpuMin(numeric_limits<double>::max())
|
| , fPerIterTimeFormat(perIterTimeFormat)
|
| , fNormalTimeFormat(normalTimeFormat)
|
| {}
|
|
|