libstdc++: Add new headers to <bits/stdc++.h> PCH

libstdc++-v3/ChangeLog:

	* include/precompiled/stdc++.h: Include <stacktrace> and
	<stdatomic.h> for C++23.
This commit is contained in:
Jonathan Wakely 2022-04-14 10:37:09 +01:00
parent d2f8208e9a
commit 41a72a744a

View File

@ -155,4 +155,8 @@
#if __cplusplus > 202002L
#include <expected>
#include <spanstream>
#if __has_include(<stacktrace>)
# include <stacktrace>
#endif
#include <stdatomic.h>
#endif