[clangd] Remove unused variable IsBroadcasting
authorKazu Hirata <kazu@google.com>
Mon, 29 May 2023 21:17:03 +0000 (14:17 -0700)
committerKazu Hirata <kazu@google.com>
Mon, 29 May 2023 21:17:03 +0000 (14:17 -0700)
The variable was introduced without a use by:

  commit 2bebc3d0602b407b3f351e782940959da5808f97
  Author: Sam McCall <sam.mccall@gmail.com>
  Date:   Tue Nov 20 10:56:03 2018 +0000

clang-tools-extra/clangd/support/Function.h

index 5437729..a0bce83 100644 (file)
@@ -97,7 +97,6 @@ private:
                 "use a plain type: event values are always passed by const&");
 
   std::recursive_mutex ListenersMu;
-  bool IsBroadcasting = false;
   std::vector<std::pair<Listener, unsigned>> Listeners;
   unsigned ListenerCount = 0;
 };