libnonius / nonius

A C++ micro-benchmarking framework
https://nonius.io
Creative Commons Zero v1.0 Universal
359 stars 47 forks source link

Initialize duration struct members to fix uninitialized data on Windows #78

Open bitshifter opened 8 years ago

bitshifter commented 8 years ago

Fixes #74. Initially I just changed execution_plan but I've changed the rest for good measure. Unfortunately adding default member initializers means constructors need to be added and called from the conversion cast operator. I tried calling Duration::zero() instead of using = {} but MSVC seemed to get confused with the template alias nonius::Duration in some places.