libstdc++: Add missing header to some tests

These tests use std::this_thread::sleep_for without including <thread>.

libstdc++-v3/ChangeLog:

	* testsuite/30_threads/async/async.cc: Include <thread>.
	* testsuite/30_threads/future/members/93456.cc: Likewise.
This commit is contained in:
Jonathan Wakely 2020-11-19 16:17:33 +00:00
parent 5c5a67e61b
commit 5e6a43158d
2 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#include <future>
#include <thread>
#include <testsuite_hooks.h>
using namespace std;

View File

@ -22,6 +22,7 @@
#include <future>
#include <thread>
#include <chrono>
#include <climits>
#include <testsuite_hooks.h>