Commit 7388ee9e by Jonathan Wakely Committed by Jonathan Wakely

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

From-SVN: r224425
parent f0b587aa
2015-06-12 Jonathan Wakely <jwakely@redhat.com> 2015-06-12 Jonathan Wakely <jwakely@redhat.com>
* include/precompiled/stdc++.h: Include <codecvt> and <shared_mutex>.
PR libstdc++/66464 PR libstdc++/66464
* src/c++11/codecvt.cc (codecvt_utf16_base<char32_t>::do_max_length): * src/c++11/codecvt.cc (codecvt_utf16_base<char32_t>::do_max_length):
Return 4 not 3. Return 4 not 3.
......
...@@ -98,6 +98,7 @@ ...@@ -98,6 +98,7 @@
#include <array> #include <array>
#include <atomic> #include <atomic>
#include <chrono> #include <chrono>
#include <codecvt>
#include <condition_variable> #include <condition_variable>
#include <forward_list> #include <forward_list>
#include <future> #include <future>
...@@ -115,3 +116,7 @@ ...@@ -115,3 +116,7 @@
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
#endif #endif
#if __cplusplus >= 201402L
#include <shared_mutex>
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment