Add missing noexcept specifier

This commit is contained in:
Robbert van der Helm
2021-06-22 17:02:11 +02:00
parent c2b8626ec5
commit 333707255e
+1 -1
View File
@@ -104,7 +104,7 @@ class Win32Thread {
* Join (or wait on, since this is WIn32) the thread on shutdown, just like
* `std::jthread` does.
*/
~Win32Thread();
~Win32Thread() noexcept;
Win32Thread(const Win32Thread&) = delete;
Win32Thread& operator=(const Win32Thread&) = delete;