Skip to content

Instantly share code, notes, and snippets.

@ehsan
Created December 3, 2018 17:04
Show Gist options
  • Save ehsan/7b8b6438857f584458ed86a1be59689b to your computer and use it in GitHub Desktop.
Save ehsan/7b8b6438857f584458ed86a1be59689b to your computer and use it in GitHub Desktop.
$ cat test.cpp
void NS_IMETHODIMP
nsDocShell::FirePageHideNotification(bool aIsUnload) {
}
NS_IMETHODIMP void
nsDocShell::FirePageHideNotification(bool aIsUnload) {
}
$ clang-format -style=Google test.cpp
void NS_IMETHODIMP nsDocShell::FirePageHideNotification(bool aIsUnload) {}
NS_IMETHODIMP void nsDocShell::FirePageHideNotification(bool aIsUnload) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment