Skip to content

Commit f053712

Browse files
authored
Merge pull request #2536 from jwillemsen/jwi-usingfix
Fix error
2 parents b86aaf6 + 598a2f7 commit f053712

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

ACE/ace/Event_Handler_T.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ class ACE_Event_Handler_T : public ACE_Event_Handler
6464

6565
// Get/set the underlying handle.
6666
using GET_HANDLE = ACE_HANDLE (T::*)() const;
67-
t;
68-
using SET_HANDLE = void (T::*)(ACE_HANDLE);
67+
using SET_HANDLE = void (T::*)(ACE_HANDLE);
6968

7069
/// Handle I/O events.
7170
using IO_HANDLER = int (T::*)(ACE_HANDLE);
@@ -75,9 +74,7 @@ using SET_HANDLE = void (T::*)(ACE_HANDLE);
7574

7675
/// Handle close events.
7776
using CL_HANDLER = int (T::*)(ACE_HANDLE, ACE_Reactor_Mask);
78-
79-
type;
80-
using SIG_HANDLER = int (T::*)(int, siginfo_t *, ucontext_t *);
77+
using SIG_HANDLER = int (T::*)(int, siginfo_t *, ucontext_t *);
8178

8279
/// Initialize the op_handler.
8380
ACE_Event_Handler_T (T *op_handler,

0 commit comments

Comments
 (0)