From 41eefb2d292817d34f9152079bb283ebed0d75a2 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Mon, 7 Jul 2014 21:12:29 -0400 Subject: [PATCH] Remove meaningless or redundant (implied) todos. --- include/boost/hana/detail/sandbox/monad_zero.hpp | 2 +- include/boost/hana/integer_list.hpp | 3 --- include/boost/hana/type_list.hpp | 3 +-- test/sandbox/string.cpp | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/include/boost/hana/detail/sandbox/monad_zero.hpp b/include/boost/hana/detail/sandbox/monad_zero.hpp index 7ec205baa..9bb57022e 100644 --- a/include/boost/hana/detail/sandbox/monad_zero.hpp +++ b/include/boost/hana/detail/sandbox/monad_zero.hpp @@ -42,7 +42,7 @@ namespace boost { namespace hana { //! @method{MonadZero} //! //! ### Example - //! @todo + //! ... BOOST_HANA_CONSTEXPR_LAMBDA auto filter = [](auto predicate, auto monad) { return MonadZero::instance>::filter_impl(predicate, monad); }; diff --git a/include/boost/hana/integer_list.hpp b/include/boost/hana/integer_list.hpp index 8aef3d14b..1ac0c78bd 100644 --- a/include/boost/hana/integer_list.hpp +++ b/include/boost/hana/integer_list.hpp @@ -24,9 +24,6 @@ namespace boost { namespace hana { //! @note //! `IntegerList` may be more efficient than `List` because of //! optimizations. When possible, it should be preferred. - //! - //! @todo - //! Actually provide optimizations. struct IntegerList { }; namespace operators { diff --git a/include/boost/hana/type_list.hpp b/include/boost/hana/type_list.hpp index 3a2c6d977..5eca4cf2a 100644 --- a/include/boost/hana/type_list.hpp +++ b/include/boost/hana/type_list.hpp @@ -27,8 +27,7 @@ namespace boost { namespace hana { //! optimizations. When possible, it should be preferred. //! //! @todo - //! - Implement efficient membership testing. - //! - Actually provide optimizations. + //! - Efficient membership testing is possible. //! - `TypeList` is not really a `Functor` because the function must //! map from `Type`s to `Type`s. Should it be modified so that //! `TypeList` becomesĀ `List` if we try to store something else diff --git a/test/sandbox/string.cpp b/test/sandbox/string.cpp index 4a59445da..564a4c287 100644 --- a/test/sandbox/string.cpp +++ b/test/sandbox/string.cpp @@ -157,7 +157,7 @@ namespace boost { namespace hana { namespace sandbox { ////////////////////////////////////////////////////////////////////// // operations ////////////////////////////////////////////////////////////////////// - // TODO + // ... private: //////////////////////////////////////////////////////////////////////