Some minor improvements

This commit is contained in:
Denis Blank 2018-02-06 01:57:41 +01:00
parent c8b4e1ddcd
commit 7e90187e50
2 changed files with 3 additions and 2 deletions

View File

@ -458,7 +458,8 @@ auto remap_container(container_mapping_tag<false, false>, M&& mapper,
// We try to reserve the original size from the source
// container to the destination container.
// TODO traits::detail::reserve_if_reservable(remapped, container.size());
// TODO Re-implement this
// traits::detail::reserve_if_reservable(remapped, container.size());
// Perform the actual value remapping from the source to
// the destination.

View File

@ -45,7 +45,7 @@ namespace detail {
namespace util {
/// Helper to trick compilers about that a parameter pack is used
template <typename... T>
void unused(T&&...) {
constexpr void unused(T&&...) noexcept {
}
namespace detail {