summaryrefslogtreecommitdiff
path: root/src/containers.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers.hh')
-rw-r--r--src/containers.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers.hh b/src/containers.hh
index e91f29a0..c4fd379b 100644
--- a/src/containers.hh
+++ b/src/containers.hh
@@ -129,7 +129,7 @@ struct TransformView
using ContainerIt = IteratorOf<Container>;
struct Iterator : std::iterator<std::forward_iterator_tag,
- typename std::remove_reference<TransformedResult<ContainerIt, Transform>>::type>
+ std::remove_reference_t<TransformedResult<ContainerIt, Transform>>>
{
Iterator(const TransformView& view, ContainerIt it)
: m_it{std::move(it)}, m_view{view} {}