Skip to content

Instantly share code, notes, and snippets.

@Hoikas
Created January 27, 2013 03:51
Show Gist options
  • Select an option

  • Save Hoikas/4646177 to your computer and use it in GitHub Desktop.

Select an option

Save Hoikas/4646177 to your computer and use it in GitHub Desktop.
std::unique_ptr<IKey, std::function<void(IKey*)>> key(
reinterpret_cast<IKey*>(new uint8_t[keys->GetKeySize()]),
[] (IKey* ptr) { delete[] reinterpret_cast<uint8_t*>(ptr); }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment