Fix compiler warning

This commit is contained in:
Justine Tunney 2024-05-27 02:23:24 -07:00
parent 8e68384e15
commit c638eabfe0
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -10,6 +10,9 @@
#ifndef _LIBCPP_STRING
#define _LIBCPP_STRING
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // [jart]
/*
string synopsis
@ -4396,4 +4399,6 @@ _LIBCPP_POP_MACROS
# include <utility>
#endif
#pragma GCC diagnostic pop // [jart]
#endif // _LIBCPP_STRING