Skip to content

Commit

Permalink
Fixed compile error on MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
wqking committed May 31, 2019
1 parent 79d89ad commit 85af5fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/conditionalremover.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ template <typename DispatcherType>
class ConditionalRemover;
```

`DispatcherType` can be CallbackList, EventDispatcher, or EventQueue.
`DispatcherType` can be CallbackList, EventDispatcher, EventQueue, HeterCallbackList, HeterEventDispatcher, or HeterEventQueue.

<a id="a3_3"></a>
### Member functions
Expand Down
2 changes: 1 addition & 1 deletion doc/counterremover.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ template <typename DispatcherType>
class CounterRemover;
```

`DispatcherType` can be CallbackList, EventDispatcher, or EventQueue.
`DispatcherType` can be CallbackList, EventDispatcher, EventQueue, HeterCallbackList, HeterEventDispatcher, or HeterEventQueue.

<a id="a3_3"></a>
### Member functions
Expand Down
2 changes: 1 addition & 1 deletion doc/scopedremover.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ template <typename DispatcherType>
class ScopedRemover;
```

`DispatcherType` can be CallbackList, EventDispatcher, or EventQueue.
`DispatcherType` can be CallbackList, EventDispatcher, EventQueue, HeterCallbackList, HeterEventDispatcher, or HeterEventQueue.

<a id="a3_3"></a>
### Member functions
Expand Down
4 changes: 2 additions & 2 deletions include/eventpp/utilities/counterremover.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class CounterRemover <
int triggerCount;
DispatcherType & dispatcher;
typename DispatcherType::Event event;
typename Callback listener;
Callback listener;
typename DispatcherType::Handle handle;
};

Expand Down Expand Up @@ -120,7 +120,7 @@ class CounterRemover <
{
int triggerCount;
CallbackListType & callbackList;
typename Callback listener;
Callback listener;
typename CallbackListType::Handle handle;
};

Expand Down

0 comments on commit 85af5fa

Please sign in to comment.