| 806 | # ifdef __use_timers |
| 807 | |
| 808 | __inline_call std::string dump_time ( |
| 809 | typename std:: |
| 810 | chrono::high_resolution_clock |
| 811 | ::time_point const& _ttic , |
| 812 | typename std:: |
| 813 | chrono::high_resolution_clock |
| 814 | ::time_point const& _ttoc |
| 815 | ) |
| 816 | { |
| 817 | std::stringstream _sstr; |
| 818 | _sstr << " Done. (" |
| 819 | << std::scientific |
| 820 | << std::setprecision(2) |
| 821 | << time_span(_ttic, _ttoc ) |
| 822 | << "sec)\n\n" ; |
| 823 | |
| 824 | return _sstr.str () ; |
| 825 | } |
| 826 | |
| 827 | # endif//__use_timers |
| 828 |
nothing calls this directly
no test coverage detected