mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-26 18:42:41 +01:00
Added missing explicit keyword.
This commit is contained in:
@@ -52,13 +52,13 @@ public:
|
|||||||
EVENT_AUTORESET = EVENT_AUTORESET_IMPL, /// Auto-reset event
|
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,
|
/// Creates the event. If type is EVENT_AUTORESET,
|
||||||
/// the event is automatically reset after
|
/// the event is automatically reset after
|
||||||
/// a wait() successfully returns.
|
/// a wait() successfully returns.
|
||||||
|
|
||||||
//@ deprecated
|
//@ deprecated
|
||||||
Event(bool autoReset);
|
explicit Event(bool autoReset);
|
||||||
/// Please use Event::Event(EventType) instead.
|
/// Please use Event::Event(EventType) instead.
|
||||||
|
|
||||||
~Event();
|
~Event();
|
||||||
|
|||||||
Reference in New Issue
Block a user