missed two

This commit is contained in:
joshvera 2015-12-02 17:47:46 -05:00
parent debf5205fb
commit 144aab22e6

View file

@ -36,7 +36,7 @@ static inline TSPoint ts_point_add(TSPoint point1, TSPoint point2) {
column = point2.column;
}
return (TSPoint){ .row = row, .column = column };
return ts_point_make(row, column);
}
static inline TSPoint ts_point_sub(TSPoint point1, TSPoint point2) {
@ -49,7 +49,7 @@ static inline TSPoint ts_point_sub(TSPoint point1, TSPoint point2) {
column = point1.column;
}
return (TSPoint){ .row = row, .column = column };
return ts_point_make(row, column);
}
static inline TSLength ts_length_zero() {