Skip to content

Commit

Permalink
Fix Clang documentation warnings.
Browse files Browse the repository at this point in the history
The string //<< is seen as documentation comment instead of normal
comment.
  • Loading branch information
mordante committed Jun 21, 2014
1 parent f574695 commit ef104ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/game.cpp
Expand Up @@ -240,9 +240,9 @@ void game::start_game(const player_map::const_iterator starter) {
LOG_GAME << network::ip_address(starter->first) << "\t"
<< starter->second.name() << "\t" << "started"
<< (save ? " reloaded" : "") << " game:\t\"" << name_ << "\" (" << id_
//<< ") with: " << list_users(players_, __func__) << ". Settings: map: " << s["id"]
// << ") with: " << list_users(players_, __func__) << ". Settings: map: " << s["id"]
<< ") with: " << list_users(players_, __func__) << ". Settings: map: " << s["mp_scenario"]
//<< "\tera: " << (s.child("era") ? (*s.child("era"))["id"] : "")
// << "\tera: " << (s.child("era") ? (*s.child("era"))["id"] : "")
<< "\tera: " << s["mp_era"]
<< "\tXP: " << s["experience_modifier"]
<< "\tGPV: " << s["mp_village_gold"]
Expand Down

0 comments on commit ef104ed

Please sign in to comment.