[General] Remove explicit specifier

This commit is contained in:
Koncord 2017-10-11 06:17:02 +08:00
parent 3839a2dcfd
commit 6cb9c3c713

View file

@ -31,7 +31,7 @@ struct Plugin
{ {
std::string name; std::string name;
unsigned hash; unsigned hash;
explicit Plugin(std::string name = "", unsigned hash = 0): name(std::move(name)), hash(hash) {}; Plugin(std::string name = "", unsigned hash = 0): name(std::move(name)), hash(hash) {};
}; };
struct QueryData struct QueryData