fixed windows compile errors
This commit is contained in:
parent
0c65d15f6d
commit
96c25caaa8
2 changed files with 1 additions and 3 deletions
|
@ -13,8 +13,6 @@
|
|||
|
||||
#include "log.hpp"
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
int scope_logger::indent = 0;
|
||||
|
|
|
@ -293,7 +293,7 @@ LEVEL_RESULT play_level(game_data& gameinfo, const config& game_config,
|
|||
const std::set<std::string> &recruitable = help_team_it->recruits();
|
||||
std::set<std::string> &enc_units = preferences::encountered_units();
|
||||
std::cout << "Adding recruitable units: " << std::endl;
|
||||
for (std::set<std::string>::iterator it = recruitable.begin();
|
||||
for (std::set<std::string>::const_iterator it = recruitable.begin();
|
||||
it != recruitable.end(); it++) {
|
||||
std::cout << *it << std::endl;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue