Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ryuta Kambe <[email protected]>
  • Loading branch information
veqcc committed Nov 19, 2024
1 parent 2cfd7d5 commit 19932bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perception/autoware_bytetrack/lib/include/lapjv.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ typedef double cost_t;
typedef char boolean;
typedef enum fp_t { FP_1 = 1, FP_2 = 2, FP_DYNAMIC = 3 } fp_t;

extern int_t lapjv_internal(const uint_t n, const cost_t * cost[], int_t * x, int_t * y);
extern int_t lapjv_internal(const uint_t n, cost_t * cost[], int_t * x, int_t * y);

#endif // LAPJV_H_
2 changes: 1 addition & 1 deletion perception/autoware_bytetrack/lib/src/lapjv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ int_t _ca_dense(

/** Solve dense sparse LAP.
*/
int lapjv_internal(const uint_t n, const cost_t * cost[], int_t * x, int_t * y)
int lapjv_internal(const uint_t n, cost_t * cost[], int_t * x, int_t * y)
{
int ret;
int_t * free_rows;
Expand Down

0 comments on commit 19932bd

Please sign in to comment.