Remove superfluous "has" function

This commit is contained in:
Eelco Dolstra
2015-11-02 14:29:12 +01:00
parent a5879cbeb8
commit c087472c71
3 changed files with 2 additions and 9 deletions

View File

@ -439,10 +439,3 @@ public:
void run(BuildID buildOne = 0);
};
template <class C, class V>
bool has(const C & c, const V & v)
{
return c.find(v) != c.end();
}