Skip to content

Instantly share code, notes, and snippets.

@vinniefalco
Created January 20, 2020 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinniefalco/8ca5a0b111f49ec497a098170062a146 to your computer and use it in GitHub Desktop.
Save vinniefalco/8ca5a0b111f49ec497a098170062a146 to your computer and use it in GitHub Desktop.
namespace url {
class basic_value
{
char* s_;
protected:
virtual
char*
reserve(
char* buffer,
std::size_t n) = 0;
};
template<class Allocator>
class dynamic_value : public basic_value
{
};
template<std::size_t N>
class static_value : public basic_value
{
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment