Commit 97681c88 authored by Your Name's avatar Your Name
Browse files

fix IsEmpty is const

parent 1f8a2508
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ public:
        if (dispatcher.is_empty()) { signals_.erase(iter); }
    }

    bool IsEmpty(EventBus *bus) const
    bool IsEmpty(EventBus *bus)
    {
        sled::SharedMutexReadLock lock(&shared_mutex_);
        auto iter = signals_.find(bus);