Skip to content

Commit 1631bfd

Browse files
committed
Delete some of the const
1 parent 9f33e30 commit 1631bfd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

meos/src/temporal/tsequence.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ tsequence_make_exp(TInstant **instants, int count, int maxcount,
10511051
* @csqlfn #Tsequence_constructor()
10521052
*/
10531053
TSequence *
1054-
tsequence_make(const TInstant **instants, int count, bool lower_inc, bool upper_inc,
1054+
tsequence_make(TInstant **instants, int count, bool lower_inc, bool upper_inc,
10551055
interpType interp, bool normalize)
10561056
{
10571057
/* Ensure the validity of the arguments */

meos/src/temporal/tsequenceset.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ tsequenceset_make_exp(TSequence **sequences, int count, int maxcount,
401401
* @csqlfn #Tsequenceset_constructor()
402402
*/
403403
TSequenceSet *
404-
tsequenceset_make(const TSequence **sequences, int count, bool normalize)
404+
tsequenceset_make(TSequence **sequences, int count, bool normalize)
405405
{
406406
/* Ensure the validity of the arguments */
407407
VALIDATE_NOT_NULL(sequences, NULL);
@@ -527,7 +527,7 @@ tsequenceset_make_gaps_valid(TInstant **instants, int count, bool lower_inc,
527527
* @csqlfn #Tsequenceset_constructor_gaps()
528528
*/
529529
TSequenceSet *
530-
tsequenceset_make_gaps(const TInstant **instants, int count, interpType interp,
530+
tsequenceset_make_gaps(TInstant **instants, int count, interpType interp,
531531
const Interval *maxt, double maxdist)
532532
{
533533
/* Ensure the validity of the arguments */

0 commit comments

Comments
 (0)