Skip to content

Commit

Permalink
Fix mismatched const in hh and i.hh file.
Browse files Browse the repository at this point in the history
  • Loading branch information
KineticTheory committed Aug 13, 2021
1 parent cd1470e commit c9799e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ds++/dbc.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ namespace rtt_dsxx {

//! Check whether a sequence is monotonically increasing.
template <typename Forward_Iterator>
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 <typename Forward_Iterator>
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 <typename Forward_Iterator>
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 <typename Random_Access_Container>
Expand Down

0 comments on commit c9799e0

Please sign in to comment.