Upgrade to C++17 (#7811)

* Upgrade to C++17
This commit is contained in:
Vincent Stumpf
2023-06-16 20:07:23 -07:00
committed by GitHub
parent 833966f47b
commit 711705df10
19 changed files with 60 additions and 61 deletions

View File

@@ -270,7 +270,7 @@ static int add_path(struct node_heap *heap, struct path_node *tp, int16 x, int16
*------------------------------------------*/
bool path_search(struct walkpath_data *wpd, int16 m, int16 x0, int16 y0, int16 x1, int16 y1, int flag, cell_chk cell)
{
register int i, x, y, dx = 0, dy = 0;
int i, x, y, dx = 0, dy = 0;
struct map_data *mapdata = map_getmapdata(m);
struct walkpath_data s_wpd;