mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
Updated Event c'tor to accept an enum.
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
namespace Poco {
|
||||
|
||||
|
||||
EventImpl::EventImpl(bool autoReset): _auto(autoReset), _state(false)
|
||||
EventImpl::EventImpl(EventTypeImpl type): _auto(type == EVENT_AUTORESET_IMPL), _state(false)
|
||||
{
|
||||
#if defined(POCO_VXWORKS)
|
||||
// This workaround is for VxWorks 5.x where
|
||||
|
||||
Reference in New Issue
Block a user