Skip to content

Instantly share code, notes, and snippets.

@njlr
Created May 16, 2017 13:42
Show Gist options
  • Save njlr/6f5f6d11e0ca34260a5fbdd60a286dd9 to your computer and use it in GitHub Desktop.
Save njlr/6f5f6d11e0ca34260a5fbdd60a286dd9 to your computer and use it in GitHub Desktop.
int compute(int x) noexcept {
return x;
}
int compute(int x) throw(std::exception) {
return x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment