aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2024-11-01 16:09:02 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2024-11-01 16:14:15 +0000
commita51d220377ab8117305567e888a942d127ef6a48 (patch)
treeb346247e59fb54b6a319ea71dac10f309e2b6f80 /libstdc++-v3
parent063196e3933ddbe6c662f4996f68567d348a99f1 (diff)
downloadgcc-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.cc3
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>