[libc++] Use explicit #include instead of transitive #include (#115420)

This benchmark test currently uses `std::unique_ptr` without explicitly
`#include <memory>`. I think we should not rely on transitive inclusion.
This commit is contained in:
Peng Liu 2024-11-08 10:07:51 -05:00 committed by GitHub
parent da9499ebfb
commit 7844257fc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,6 +13,8 @@
#include <cstring>
#include <deque>
#include <functional>
#include <memory>
#include <string>
#include <vector>
#include "benchmark/benchmark.h"