Skip to content

Instantly share code, notes, and snippets.

View sholsapp's full-sized avatar

Stephen Holsapple sholsapp

  • San Something, CA
View GitHub Profile
@sholsapp
sholsapp / any.cc
Created April 4, 2016 15:42
An implementation of a boost::any-like thing.
#include <iostream>
#include <map>
#include <string>
#include <utility>
class any {
public:
any()
: content(0)