[committed] libstdc++: Add missing <vector> header to unordered_set/pr115285.cc test

Message ID 20241101161604.1876445-1-jwakely@redhat.com
State Committed
Commit a51d220377ab8117305567e888a942d127ef6a48
Headers
Series [committed] libstdc++: Add missing <vector> header to unordered_set/pr115285.cc test |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gcc_build--master-aarch64 fail Patch failed to apply
linaro-tcwg-bot/tcwg_gcc_build--master-arm fail Patch failed to apply

Commit Message

Jonathan Wakely Nov. 1, 2024, 4:15 p.m. UTC
  libstdc++-v3/ChangeLog:

	* testsuite/23_containers/unordered_set/pr115285.cc: Include
	missing header for std::vector.
---
Pushed as obvious.

 libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Patch

diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/pr115285.cc
index 6c5cc24930c..85954aed74b 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>