Fix whitespace

develop
James Gilles 2016-02-02 01:14:04 -05:00
parent 0a670bb0db
commit 5d8c2fd502
1 changed files with 4 additions and 4 deletions

@ -1461,7 +1461,7 @@ pair<string, function<bool(df::unit*)>> createMaxAgeFilter(vector<string> &filte
// Sort of like filter function constructors. // Sort of like filter function constructors.
// Constructor functions are permitted to throw strings, which will be caught and printed. // Constructor functions are permitted to throw strings, which will be caught and printed.
// Result filter functions are not permitted to throw std::exceptions. // Result filter functions are not permitted to throw std::exceptions.
// Result filter functions should not store references // Result filter functions should not store references
unordered_map<string, pair<int, unordered_map<string, pair<int,
function<pair<string, function<bool(df::unit*)>>(vector<string>&)>>> zone_param_filters = { function<pair<string, function<bool(df::unit*)>>(vector<string>&)>>> zone_param_filters = {
{ "race", { 1, createRaceFilter } }, { "race", { 1, createRaceFilter } },
@ -1541,7 +1541,7 @@ command_result df_zone (color_ostream &out, vector <string> & parameters)
target_building = getAssignableBuildingAtCursor(out); target_building = getAssignableBuildingAtCursor(out);
if (target_building) { if (target_building) {
out.color(COLOR_BLUE); out.color(COLOR_BLUE);
out << "Current building set to #" out << "Current building set to #"
<< target_building->id << endl; << target_building->id << endl;
out.reset_color(); out.reset_color();
@ -1849,7 +1849,7 @@ command_result df_zone (color_ostream &out, vector <string> & parameters)
// get results // get results
try { try {
auto result_pair = filter_constructor(args); auto result_pair = filter_constructor(args);
string& desc = result_pair.first; string& desc = result_pair.first;
auto& filter = result_pair.second; auto& filter = result_pair.second;
if (invert_filter) { if (invert_filter) {
@ -1975,7 +1975,7 @@ command_result df_zone (color_ostream &out, vector <string> & parameters)
return CR_FAILURE; return CR_FAILURE;
} }
else else
{ {
out.color(COLOR_RED); out.color(COLOR_RED);
out << "Cannot unassign units from this type of building!" out << "Cannot unassign units from this type of building!"