Skip to content

Instantly share code, notes, and snippets.

@akamilkhan
Created February 28, 2021 14:44
Show Gist options
  • Save akamilkhan/2730406a995e830e58d2a217c99e7be2 to your computer and use it in GitHub Desktop.
Save akamilkhan/2730406a995e830e58d2a217c99e7be2 to your computer and use it in GitHub Desktop.
uint64_t time_now()
{
return (std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now().time_since_epoch())).count();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment