towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:15:22: error: 'getDistance' was not declared in this scope
dist[0][i] = getDistance(0, i);
^~~~~~~~~~~
towns.cpp:15:22: note: suggested alternative: 'centDistance'
dist[0][i] = getDistance(0, i);
^~~~~~~~~~~
centDistance
towns.cpp:21:23: error: 'getDistance' was not declared in this scope
dist[d1][i] = getDistance(d1, i);
^~~~~~~~~~~
towns.cpp:21:23: note: suggested alternative: 'centDistance'
dist[d1][i] = getDistance(d1, i);
^~~~~~~~~~~
centDistance
towns.cpp:34:12: error: 'ret' was not declared in this scope
return ret;
^~~
towns.cpp:34:12: note: suggested alternative: 'getw'
return ret;
^~~
getw
towns.cpp:12:28: warning: unused parameter 'sub' [-Wunused-parameter]
int hubDistance(int N, int sub){
^~~