forked from mirror/openmw-tes3mp
[General] Remove explicit specifier
This commit is contained in:
parent
3839a2dcfd
commit
6cb9c3c713
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue