Remove unneeded constructor

This commit is contained in:
Maxime Coste 2015-10-14 08:49:13 +01:00
parent 572cf9d6b2
commit 43fb216772

View File

@ -19,11 +19,6 @@ struct InsertCompleterDesc
Filename
};
InsertCompleterDesc(Mode mode = Filename,
Optional<String> param = Optional<String>{})
: mode{mode}, param{std::move(param)}
{}
bool operator==(const InsertCompleterDesc& other) const
{ return mode == other.mode and param == other.param; }