mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-18 00:15:27 +01:00
Added missing explicit keyword.
This commit is contained in:
parent
1bb48442b6
commit
6eb8f582e7
@ -52,13 +52,13 @@ public:
|
||||
EVENT_AUTORESET = EVENT_AUTORESET_IMPL, /// Auto-reset event
|
||||
};
|
||||
|
||||
Event(EventType type = EVENT_AUTORESET);
|
||||
explicit Event(EventType type = EVENT_AUTORESET);
|
||||
/// Creates the event. If type is EVENT_AUTORESET,
|
||||
/// the event is automatically reset after
|
||||
/// a wait() successfully returns.
|
||||
|
||||
//@ deprecated
|
||||
Event(bool autoReset);
|
||||
explicit Event(bool autoReset);
|
||||
/// Please use Event::Event(EventType) instead.
|
||||
|
||||
~Event();
|
||||
|
Loading…
x
Reference in New Issue
Block a user