remove entry from watchlist
| 849 | |
| 850 | // remove entry from watchlist |
| 851 | static void autobutcher_removeFromWatchList(color_ostream &out, unsigned id) { |
| 852 | if (watched_races.count(id)) { |
| 853 | DEBUG(control,out).print("removing watchlist entry\n"); |
| 854 | WatchedRace * w = watched_races[id]; |
| 855 | w->RemoveConfig(out); |
| 856 | watched_races.erase(id); |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | // set default target values for new races |
| 861 | static void autobutcher_setDefaultTargetNew(color_ostream &out, unsigned fk, unsigned mk, unsigned fa, unsigned ma) { |
nothing calls this directly
no test coverage detected