From 3ff6873e4c89f5b377ef7bd80d583a8b6197e487 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 27 Apr 2020 09:38:12 +1000 Subject: [PATCH] view: Avoid assertions that print the iterators Not all iterators are printable. --- view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view.hpp b/view.hpp index 4c8d96a5..ff56c8f1 100644 --- a/view.hpp +++ b/view.hpp @@ -44,7 +44,7 @@ namespace cruft { m_end (last) { if constexpr (cruft::is_lteq_orderable_v) { - CHECK_LE (m_begin, m_end); + CHECK (m_begin <= m_end); } }