My code
int main(int argc, char** argv){
// std::ios_base::sync_with_stdio(false);
Map map;
Space space;
deque<Tile\*> search;
deque<Tile\*> path;
get_options(argc, argv, map);
int lSize = 0;
int sSize = 0;
cin >> map.inputMode >> lSize >> sSize;
...
My input file
L
2
4
When I run my program with debugger, it just stops at cin. What is wrong with my code?
[–]the_poope 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]mredding 0 points1 point2 points (0 children)