mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-19 01:04:20 +00:00
Cleanup: Add some missing explicit constructors
This commit is contained in:
parent
4cf66d6522
commit
4292a38327
20 changed files with 46 additions and 46 deletions
|
|
@ -54,7 +54,7 @@ struct ZombiePatrol : private Thread,
|
|||
private AsyncUpdater,
|
||||
private Timer
|
||||
{
|
||||
ZombiePatrol (MessageHandler& mh)
|
||||
explicit ZombiePatrol (MessageHandler& mh)
|
||||
: Thread ("Ping"), owner (mh)
|
||||
{
|
||||
startThread (2);
|
||||
|
|
@ -135,7 +135,7 @@ class ServerIPC : public InterprocessConnection,
|
|||
public MessageHandler
|
||||
{
|
||||
public:
|
||||
ServerIPC (const StringArray& info)
|
||||
explicit ServerIPC (const StringArray& info)
|
||||
: InterprocessConnection (true), liveCodeBuilder (nullptr)
|
||||
{
|
||||
if (! createPipe (info[0], -1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue