mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-15 00:01:30 +00:00
Address doxygen issues.
This commit is contained in:
parent
966f5cd255
commit
8e7029fc51
|
@ -49,7 +49,7 @@ inline bool might_contain_variables(const std::string &str)
|
|||
* 'str' with the equivalent symbols in the given symbol table. If 'symbols'
|
||||
* is nullptr, then game event variables will be used instead.
|
||||
*/
|
||||
std::string interpolate_variables_into_string(const std::string &str, const string_map * const symbols);
|
||||
std::string interpolate_variables_into_string(const std::string &str, const std::map<std::string, t_string> * const symbols);
|
||||
std::string interpolate_variables_into_string(const std::string &str, const std::map<std::string,std::string> * const symbols);
|
||||
std::string interpolate_variables_into_string(const std::string &str, const variable_set& variables);
|
||||
|
||||
|
|
|
@ -801,7 +801,7 @@ void reset_current_scenario()
|
|||
mid_scenario = false;
|
||||
}
|
||||
|
||||
int sum_str_int_map(const stats::str_int_map& m)
|
||||
int sum_str_int_map(const std::map<std::string,int>& m)
|
||||
{
|
||||
int res = 0;
|
||||
for(stats::str_int_map::const_iterator i = m.begin(); i != m.end(); ++i) {
|
||||
|
@ -811,7 +811,7 @@ int sum_str_int_map(const stats::str_int_map& m)
|
|||
return res;
|
||||
}
|
||||
|
||||
int sum_cost_str_int_map(const stats::str_int_map &m)
|
||||
int sum_cost_str_int_map(const std::map<std::string,int>& m)
|
||||
{
|
||||
int cost = 0;
|
||||
for (stats::str_int_map::const_iterator i = m.begin(); i != m.end(); ++i) {
|
||||
|
|
|
@ -82,8 +82,8 @@ namespace statistics
|
|||
std::string save_id;
|
||||
};
|
||||
|
||||
int sum_str_int_map(const stats::str_int_map& m);
|
||||
int sum_cost_str_int_map(const stats::str_int_map &m);
|
||||
int sum_str_int_map(const std::map<std::string,int>& m);
|
||||
int sum_cost_str_int_map(const std::map<std::string,int>& m);
|
||||
|
||||
struct scenario_context
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user