[lldb][test] Fix simulator test for std::unique_ptr (#99357)

libcxx-simulators/unique_ptr/main.cpp uses __builtin_printf, that
maps to printf on Windows. Include stdio.h to avoid linker errors
on Windows.
See https://lab.llvm.org/buildbot/#/builders/141/builds/853
This commit is contained in:
Leandro Lupori 2024-07-17 14:49:22 -03:00 committed by GitHub
parent 0778f5c1f1
commit 93d38d7f08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,7 @@
#include <libcxx-simulators-common/compressed_pair.h>
#include <stdio.h>
namespace std {
namespace __lldb {
template <class _Tp> struct default_delete {