mirror of
https://github.com/boostorg/throw_exception.git
synced 2025-06-25 12:01:40 +02:00
25 lines
607 B
Plaintext
25 lines
607 B
Plaintext
////
|
|
Copyright 2019, 2022 Peter Dimov
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
http://www.boost.org/LICENSE_1_0.txt
|
|
////
|
|
|
|
[#changes]
|
|
# Revision History
|
|
:toc:
|
|
:toc-title:
|
|
:idprefix:
|
|
|
|
## Changes in 1.79.0
|
|
|
|
* Added `boost::throw_with_location`, a more lightweight alternative of
|
|
`BOOST_THROW_EXCEPTION` for programs that do not use Boost.Exception.
|
|
|
|
## Changes in 1.73.0
|
|
|
|
* Added an overload of `throw_exception` that takes a `boost::source_location`
|
|
object.
|
|
|
|
NOTE: Projects using `BOOST_THROW_EXCEPTION` with exceptions disabled will need
|
|
to add a definition of this new overload.
|