From c9799e0d7b2d1ef8fd33b492e41edbd8553b6b3a Mon Sep 17 00:00:00 2001 From: "Kelly (KT) Thompson" Date: Thu, 12 Aug 2021 18:10:07 -0600 Subject: [PATCH] Fix mismatched const in hh and i.hh file. --- src/ds++/dbc.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ds++/dbc.hh b/src/ds++/dbc.hh index 3392a961b..76a0708aa 100644 --- a/src/ds++/dbc.hh +++ b/src/ds++/dbc.hh @@ -19,15 +19,15 @@ namespace rtt_dsxx { //! Check whether a sequence is monotonically increasing. template -bool is_monotonic_increasing(Forward_Iterator const first, Forward_Iterator const last); +bool is_monotonic_increasing(Forward_Iterator first, Forward_Iterator const last); //! Check whether a sequence is strictly monotonically increasing. template -bool is_strict_monotonic_increasing(Forward_Iterator const first, Forward_Iterator const last); +bool is_strict_monotonic_increasing(Forward_Iterator first, Forward_Iterator const last); //! Check whether a sequence is strictly monotonically decreasing. template -bool is_strict_monotonic_decreasing(Forward_Iterator const first, Forward_Iterator const last); +bool is_strict_monotonic_decreasing(Forward_Iterator first, Forward_Iterator const last); //! Check whether a matrix is symmetric. template