You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C++: Rather than have each datacheck function check whether country == USA, check once then call all the functions.
If I really wanna get jiggy wit it, no need to dereference a bunch of pointers and then iterate thru & compare up to 3 chars of the country string when we know beforehand whether a route's system is in the USA, and can set a bool USA_flag...
C++: construct in Route::read_wpt; no need to recalculate for every point (easier, slightly less efficient)
C++: pass to Route::read_wpt from main & ReadWptThread; no need to recalculate for every route (more involved, more efficient)
bool USA_flag...*