diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2024-11-01 16:09:02 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2024-11-01 16:14:15 +0000 |
commit | a51d220377ab8117305567e888a942d127ef6a48 (patch) | |
tree | b346247e59fb54b6a319ea71dac10f309e2b6f80 /libstdc++-v3 | |
parent | 063196e3933ddbe6c662f4996f68567d348a99f1 (diff) | |
download | gcc-a51d220377ab8117305567e888a942d127ef6a48.zip gcc-a51d220377ab8117305567e888a942d127ef6a48.tar.gz gcc-a51d220377ab8117305567e888a942d127ef6a48.tar.bz2 |
libstdc++: Add missing <vector> header to unordered_set/pr115285.cc test
libstdc++-v3/ChangeLog:
* testsuite/23_containers/unordered_set/pr115285.cc: Include
missing header for std::vector.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc index 6c5cc24..85954ae 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc @@ -2,8 +2,9 @@ // libstdc++/115285 -#include <string> #include <unordered_set> +#include <string> +#include <vector> #include <testsuite_hooks.h> |