...to be compatible with Boost 1.33
This commit is contained in:
parent
b13924981f
commit
c2c95361d9
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@
|
|||
#include "unit_types.hpp"
|
||||
#include "wml_separators.hpp"
|
||||
#include "util.hpp"
|
||||
#include "serialization/string_utils.hpp"
|
||||
|
||||
#include <boost/algorithm/string/join.hpp>
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <sstream>
|
||||
|
@ -2418,7 +2418,7 @@ private:
|
|||
}
|
||||
const std::vector<std::string> l = get_aliases(cmd);
|
||||
if (!l.empty()) {
|
||||
ss << " (aliases: " << boost::algorithm::join(l," ") << ")";
|
||||
ss << " (aliases: " << utils::join(l,' ') << ")";
|
||||
}
|
||||
print("help", ss.str());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue