From 241c28018efb221248e7db78a2d2b9c34ae744ff Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Wed, 29 Jan 2025 02:13:10 +0300 Subject: [PATCH] Converted leftover boost::true/false_type to std in iterator_facade.hpp. --- include/boost/iterator/iterator_facade.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iterator/iterator_facade.hpp b/include/boost/iterator/iterator_facade.hpp index 4b19977..e3657e5 100644 --- a/include/boost/iterator/iterator_facade.hpp +++ b/include/boost/iterator/iterator_facade.hpp @@ -164,14 +164,14 @@ namespace iterators { template struct is_not_writable_postfix_increment_dereference_proxy : - public boost::true_type + public std::true_type {}; template struct is_not_writable_postfix_increment_dereference_proxy< writable_postfix_increment_dereference_proxy > : - public boost::false_type + public std::false_type {}; template