Remove unnecessary use of "explicit"

It's not used anywhere else with constructors taking more than one
(non-optional) argument and is not really useful with them (and not
useful at all until C++17), so don't use it here neither for
consistency.

No real changes.
This commit is contained in:
Vadim Zeitlin 2020-12-13 00:27:58 +01:00
parent 727b590814
commit f02f8cc8a1
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ private:
class WXDLLIMPEXP_NET wxWebAuthChallengeWinHTTP : public wxWebAuthChallenge
{
public:
explicit wxWebAuthChallengeWinHTTP(Source source, wxWebRequestWinHTTP& request);
wxWebAuthChallengeWinHTTP(Source source, wxWebRequestWinHTTP& request);
bool Init();

View File

@ -23,7 +23,7 @@ class wxWebRequestCURL;
class WXDLLIMPEXP_NET wxWebAuthChallengeCURL : public wxWebAuthChallenge
{
public:
explicit wxWebAuthChallengeCURL(Source source, wxWebRequestCURL& request);
wxWebAuthChallengeCURL(Source source, wxWebRequestCURL& request);
bool Init();