BMI1 support in EliasFanoCoding
[folly.git] / folly / SafeAssert.h
index 2c173d6c6fdcb187d9cc85efa07eed968e6007a8..16203e840e818399fd5aecd24514a6debb698f7d 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
 
 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
 
 #endif /* FOLLY_SAFEASSERT_H_ */
-