Skip to content

Instantly share code, notes, and snippets.

@fedelebron
Created February 11, 2012 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedelebron/1803730 to your computer and use it in GitHub Desktop.
Save fedelebron/1803730 to your computer and use it in GitHub Desktop.
Short example...
bool dbresult, loggerresult;
if (!send(database, request)) dbresult = true;
if (!send(logger, request)) loggerresult = true;
if (dbresult || loggerresult) return -1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment