Fix basic_streambuf movable trait

This commit is contained in:
Vinnie Falco
2017-05-10 05:35:38 -07:00
parent f097f401cb
commit 761e005fd6
2 changed files with 1 additions and 4 deletions

View File

@ -2,6 +2,7 @@ Version 40
* Add to_static_string
* Consolidate get_lowest_layer in type_traits.hpp
* Fix basic_streambuf movable trait
--------------------------------------------------------------------------------

View File

@ -60,11 +60,7 @@ struct basic_streambuf_movable_helper :
};
using basic_streambuf_movable =
#if 0
std::is_move_constructible<basic_streambuf_movable_helper>;
#else
std::false_type;
#endif
//------------------------------------------------------------------------------