Last active
March 3, 2018 17:09
-
-
Save deque-blog/447c6e5d96c242898141954a5b3bfb9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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