summaryrefslogtreecommitdiff
path: root/src/mongo/util/quick_exit.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 00:22:50 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 10:56:02 -0400
commit9c2ed42daa8fbbef4a919c21ec564e2db55e8d60 (patch)
tree3814f79c10d7b490948d8cb7b112ac1dd41ceff1 /src/mongo/util/quick_exit.h
parent01965cf52bce6976637ecb8f4a622aeb05ab256a (diff)
downloadmongo-9c2ed42daa8fbbef4a919c21ec564e2db55e8d60.tar.gz
SERVER-18579: Clang-Format - reformat code, no comment reflow
Diffstat (limited to 'src/mongo/util/quick_exit.h')
-rw-r--r--src/mongo/util/quick_exit.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mongo/util/quick_exit.h b/src/mongo/util/quick_exit.h
index 029b0c88f81..ba4b64b551e 100644
--- a/src/mongo/util/quick_exit.h
+++ b/src/mongo/util/quick_exit.h
@@ -30,14 +30,14 @@
namespace mongo {
- /** This function will call ::_exit and not return. Use this instead of calling ::_exit
- * directly:
- * - It offers a debugger hook to catch the process before leaving code under our control.
- * - For some builds (leak sanitizer) it gives us an opportunity to dump leaks.
- *
- * The function is named differently than quick_exit so that we can distinguish it from
- * the C++11 function of the same name.
- */
- MONGO_COMPILER_NORETURN void quickExit(int);
+/** This function will call ::_exit and not return. Use this instead of calling ::_exit
+ * directly:
+ * - It offers a debugger hook to catch the process before leaving code under our control.
+ * - For some builds (leak sanitizer) it gives us an opportunity to dump leaks.
+ *
+ * The function is named differently than quick_exit so that we can distinguish it from
+ * the C++11 function of the same name.
+ */
+MONGO_COMPILER_NORETURN void quickExit(int);
-} // namespace mongo
+} // namespace mongo