#2
| 89 | explicit auto_cpu_timer(short places = default_places); // #1 |
| 90 | auto_cpu_timer(short places, const std::string& format); // #2 |
| 91 | explicit auto_cpu_timer(const std::string& format); // #3 |
| 92 | auto_cpu_timer(std::ostream& os, short places, |
| 93 | const std::string& format) // #4 |
| 94 | : m_places(places), m_os(&os), m_format(format) |
| 95 | { start(); } |
| 96 | explicit auto_cpu_timer(std::ostream& os, short places = default_places); // #5 |
| 97 | auto_cpu_timer(std::ostream& os, const std::string& format) // #6 |
| 98 | : m_places(default_places), m_os(&os), m_format(format) |