SI_DeviceGBA: Make GBASockServer's constructor explicit
Prevents potential implicit construction scenarios involving ints.
This commit is contained in:
parent
14f261079f
commit
9f40596de5
|
@ -21,7 +21,7 @@ void GBAConnectionWaiter_Shutdown();
|
||||||
class GBASockServer
|
class GBASockServer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GBASockServer(int _iDeviceNumber);
|
explicit GBASockServer(int _iDeviceNumber);
|
||||||
~GBASockServer();
|
~GBASockServer();
|
||||||
|
|
||||||
void Disconnect();
|
void Disconnect();
|
||||||
|
|
Loading…
Reference in New Issue