Skip to content

Instantly share code, notes, and snippets.

@njlr
Created May 25, 2017 14:03
Show Gist options
  • Save njlr/272c8e2d0639b43e7f74518f2c0f3f0b to your computer and use it in GitHub Desktop.
Save njlr/272c8e2d0639b43e7f74518f2c0f3f0b to your computer and use it in GitHub Desktop.
struct Foo::Pimpl {
int x;
int bar() { return ++x; }
};
Foo::Foo(int x)
: ptr{Foo::Pimpl{x}}
{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment