fix dcheck comparison between unsigned long vs int
This commit is contained in:
parent
db51dcbe7e
commit
903a5b5100
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ EventSubscriberBase::~EventSubscriberBase() {
|
|||
}
|
||||
RemoveAllListeners();
|
||||
emitter_.Reset();
|
||||
DCHECK_EQ(js_handlers_.size(), 0);
|
||||
DCHECK_EQ(js_handlers_.size(), 0u);
|
||||
}
|
||||
|
||||
void EventSubscriberBase::On(const std::string& event_name) {
|
||||
|
|
Loading…
Add table
Reference in a new issue