Skip to content

Commit

Permalink
Fixed warning regarding int32/int64 compat problem in string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLevy committed Nov 26, 2024
1 parent ada2080 commit 1e06261
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/lib/geogram/delaunay/periodic_delaunay_3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4427,11 +4427,14 @@ namespace GEO {
phase_0_t_,

phase_I_t_, phase_I_classify_t_,
phase_I_nb_inside_, phase_I_nb_cross_,
phase_I_nb_outside_, phase_I_insert_t_, phase_I_insert_nb_,

int(phase_I_nb_inside_), int(phase_I_nb_cross_),
int(phase_I_nb_outside_),

phase_I_insert_t_, int(phase_I_insert_nb_),

phase_II_t_, phase_II_classify_t_, phase_II_insert_t_,
phase_II_insert_nb_
int(phase_II_insert_nb_)
);
}

Expand All @@ -4448,8 +4451,10 @@ namespace GEO {
phase_0_t_,

phase_I_t_, phase_I_classify_t_,
phase_I_insert_t_, phase_I_insert_nb_,
phase_I_nb_inside_, phase_I_nb_cross_, phase_I_nb_outside_,
phase_I_insert_t_, int(phase_I_insert_nb_),

int(phase_I_nb_inside_), int(phase_I_nb_cross_),
int(phase_I_nb_outside_),

phase_II_t_, phase_II_classify_t_,
phase_II_insert_t_, phase_II_insert_nb_
Expand Down

0 comments on commit 1e06261

Please sign in to comment.