* include/precompiled/stdc++.h: Include <codecvt> and <shared_mutex>.

From-SVN: r224425
This commit is contained in:
Jonathan Wakely 2015-06-12 13:27:06 +01:00 committed by Jonathan Wakely
parent f0b587aa84
commit 7388ee9e9b
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2015-06-12 Jonathan Wakely <jwakely@redhat.com>
* include/precompiled/stdc++.h: Include <codecvt> and <shared_mutex>.
PR libstdc++/66464
* src/c++11/codecvt.cc (codecvt_utf16_base<char32_t>::do_max_length):
Return 4 not 3.

View File

@ -98,6 +98,7 @@
#include <array>
#include <atomic>
#include <chrono>
#include <codecvt>
#include <condition_variable>
#include <forward_list>
#include <future>
@ -115,3 +116,7 @@
#include <unordered_map>
#include <unordered_set>
#endif
#if __cplusplus >= 201402L
#include <shared_mutex>
#endif