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:
@@ -46,7 +46,7 @@ private:
|
|||||||
class WXDLLIMPEXP_NET wxWebAuthChallengeWinHTTP : public wxWebAuthChallenge
|
class WXDLLIMPEXP_NET wxWebAuthChallengeWinHTTP : public wxWebAuthChallenge
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit wxWebAuthChallengeWinHTTP(Source source, wxWebRequestWinHTTP& request);
|
wxWebAuthChallengeWinHTTP(Source source, wxWebRequestWinHTTP& request);
|
||||||
|
|
||||||
bool Init();
|
bool Init();
|
||||||
|
|
||||||
|
@@ -23,7 +23,7 @@ class wxWebRequestCURL;
|
|||||||
class WXDLLIMPEXP_NET wxWebAuthChallengeCURL : public wxWebAuthChallenge
|
class WXDLLIMPEXP_NET wxWebAuthChallengeCURL : public wxWebAuthChallenge
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit wxWebAuthChallengeCURL(Source source, wxWebRequestCURL& request);
|
wxWebAuthChallengeCURL(Source source, wxWebRequestCURL& request);
|
||||||
|
|
||||||
bool Init();
|
bool Init();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user