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