13
edits
Changes
→Code
}
// report system time
/* void reportTime(const char* msg, steady_clock::duration span) {
auto ms = duration_cast<milliseconds>(span);
std::cout << msg << " - took - " <<
ms.count() << " millisecs" << std::endl;
}
*/
int main(int argc, char* argv[])