Commit 3c7ee0d0 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Remove exception_wrapper::throwException

Summary:
[Folly] Remove `exception_wrapper::throwException`.

It has been renamed to `throw_exception`.

Reviewed By: Orvid

Differential Revision: D5181005

fbshipit-source-id: 442b3fd9bdaa8170db504a81651cbb085ea50624
parent 641ad8da
......@@ -513,11 +513,6 @@ class exception_wrapper final {
//! Throws the wrapped expression.
[[noreturn]] void throw_exception() const;
[[noreturn]] FOLLY_DEPRECATED(
"use throw_exception") void throwException() const {
throw_exception();
}
//! Call `fn` with the wrapped exception (if any), if `fn` can accept it.
//! \par Example
//! \code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment