Skip to content

Instantly share code, notes, and snippets.

View hackeris's full-sized avatar

不是油条 hackeris

View GitHub Profile
@hackeris
hackeris / any.h
Created August 9, 2017 11:45 — forked from DieHertz/any.h
#ifndef any_h
#define any_h
namespace utility {
class any {
struct impl_base {
virtual impl_base* clone() const = 0;
virtual ~impl_base() = default;
};