Revert "make `folly::Formatter` extendible"
[folly.git] / folly / SafeAssert.h
index 2c173d6c6fdcb187d9cc85efa07eed968e6007a8..81a8ccdd83d6c09df6aa3eb247ac816ca0e1bc0e 100644 (file)
@@ -17,8 +17,8 @@
 #ifndef FOLLY_SAFEASSERT_H_
 #define FOLLY_SAFEASSERT_H_
 
-#include "folly/Portability.h"
-#include "folly/Preprocessor.h"
+#include <folly/Portability.h>
+#include <folly/Preprocessor.h>
 
 /**
  * Verify that the expression is true. If not, prints an error message
@@ -43,9 +43,9 @@
 
 namespace folly { namespace detail {
 
-void assertionFailure(const char* expr, const char* msg, const char* file,
-                      unsigned int line, const char* function)
-  FOLLY_NORETURN;
+FOLLY_NORETURN void assertionFailure(const char* expr, const char* msg,
+                      const char* file, unsigned int line,
+                      const char* function);
 
 }}  // namespace folly