Skip to content

Instantly share code, notes, and snippets.

@vinniefalco
Created January 19, 2020 19:34
Show Gist options
  • Save vinniefalco/e6cae6a80d0c5f0ece64652307c24a59 to your computer and use it in GitHub Desktop.
Save vinniefalco/e6cae6a80d0c5f0ece64652307c24a59 to your computer and use it in GitHub Desktop.
struct pmeasure
{
std::size_t n = 0;
void
append(std::uint32_t) noexcept
{
++n;
}
void
insert(
std::size_t,
std::uint32_t) noexcept
{
++n;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment