From 761e005fd694aed51528c6c381868965bac1026f Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 10 May 2017 05:35:38 -0700 Subject: [PATCH] Fix basic_streambuf movable trait --- CHANGELOG.md | 1 + include/beast/core/detail/ostream.hpp | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21c200a7..8e186014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ Version 40 * Add to_static_string * Consolidate get_lowest_layer in type_traits.hpp +* Fix basic_streambuf movable trait -------------------------------------------------------------------------------- diff --git a/include/beast/core/detail/ostream.hpp b/include/beast/core/detail/ostream.hpp index 486e4290..87e0f8b4 100644 --- a/include/beast/core/detail/ostream.hpp +++ b/include/beast/core/detail/ostream.hpp @@ -60,11 +60,7 @@ struct basic_streambuf_movable_helper : }; using basic_streambuf_movable = -#if 0 std::is_move_constructible; -#else - std::false_type; -#endif //------------------------------------------------------------------------------