Update headers.md

This commit is contained in:
apenn-msft 2025-02-03 18:07:56 -05:00 committed by GitHub
parent 8ffd43043d
commit 628b2c5c27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -808,7 +808,7 @@ explicit final_action(F&& ff) noexcept;
Construct an object with the action to invoke in the destructor.
```cpp
~final_action() noexcept;
~final_action() noexcept(std::is_nothrow_invocable_v<F>);
```
The destructor will call the action that was passed in the constructor.