Skip to content

Commit f574059

Browse files
fix compilation error in place_loc_vars()
1 parent a85ecc4 commit f574059

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vpr/src/draw/draw.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ void free_draw_structs() {
570570
#endif /* NO_GRAPHICS */
571571
}
572572

573-
void init_draw_coords(float width_val, const PlaceLocVars& place_loc_vars) {
573+
void place_loc_vars(float width_val, const PlaceLocVars& place_loc_vars) {
574574
#ifndef NO_GRAPHICS
575575
/* Load the arrays containing the left and bottom coordinates of the clbs *
576576
* forming the FPGA. tile_width_val sets the width and height of a drawn *
@@ -642,6 +642,7 @@ void init_draw_coords(float width_val, const PlaceLocVars& place_loc_vars) {
642642
* draw_height});
643643
#else
644644
(void)width_val;
645+
(void)place_loc_vars;
645646
#endif /* NO_GRAPHICS */
646647
}
647648

0 commit comments

Comments
 (0)