Switch Bits.h to just use the popcount builtins directly
[folly.git] / folly / ExceptionWrapper.cpp
index 0079db866d7160f368b869983e22370c3210109c..97713ed307eeb35087519b307a9e5cce00478048 100644 (file)
@@ -79,7 +79,7 @@ exception_wrapper::exception_wrapper(std::exception_ptr ptr) noexcept
 [[noreturn]] void exception_wrapper::onNoExceptionError() {
   std::ios_base::Init ioinit_; // ensure std::cerr is alive
   std::cerr
-      << "Cannot use `throwException` with an empty folly::exception_wrapper"
+      << "Cannot use `throw_exception` with an empty folly::exception_wrapper"
       << std::endl;
   std::terminate();
 }