Skip to content

Commit

Permalink
Remove static on registrationCb and unregistrationCb.
Browse files Browse the repository at this point in the history
Signed-off-by: Hill Ma <[email protected]>
  • Loading branch information
Hill Ma committed Oct 18, 2021
1 parent 4371fac commit bc29a4d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions include/ignition/transport/Discovery.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1405,12 +1405,10 @@ namespace ignition
private: DiscoveryCallback<Pub> disconnectionCb;

/// \brief Callback executed when a new remote subscriber is registered.
/// ToDo: Remove static when possible.
private: inline static DiscoveryCallback<Pub> registrationCb;
private: DiscoveryCallback<Pub> registrationCb;

/// \brief Callback executed when a new remote subscriber is unregistered.
/// ToDo: Remove static when possible.
private: inline static DiscoveryCallback<Pub> unregistrationCb;
private: DiscoveryCallback<Pub> unregistrationCb;

/// \brief Addressing information.
private: TopicStorage<Pub> info;
Expand Down

0 comments on commit bc29a4d

Please sign in to comment.