Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active March 3, 2018 17:09
Show Gist options
  • Save deque-blog/447c6e5d96c242898141954a5b3bfb9d to your computer and use it in GitHub Desktop.
Save deque-blog/447c6e5d96c242898141954a5b3bfb9d to your computer and use it in GitHub Desktop.
void f (Context const& context, ...) {
logger.info(context, "Doing stuff in function f");
}
void caller_from_rest(Context const& context) {
context.put("REST", "/api/v1.0/f");
// ...
f(context, ...);
// ...
context.remove("REST");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment