Skip to content

Instantly share code, notes, and snippets.

@XeCycle
Created February 23, 2016 02:58
Show Gist options
  • Save XeCycle/c8fae0a986e9906fd010 to your computer and use it in GitHub Desktop.
Save XeCycle/c8fae0a986e9906fd010 to your computer and use it in GitHub Desktop.
One way to limit scope of dependency
auto x = ([](Dependency a) {
Foo f(a);
Bar b(a);
return f+b;
})({});
long_computation(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment