Skip to content

Commit

Permalink
Delete copy constructor of TfListenerSingleton
Browse files Browse the repository at this point in the history
  • Loading branch information
furushchev committed Feb 19, 2025
1 parent 77ef079 commit 6599cfe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ namespace jsk_recognition_utils
static tf::TransformListener* instance_;
static boost::mutex mutex_;
private:
TfListenerSingleton(TfListenerSingleton const&){};
TfListenerSingleton& operator=(TfListenerSingleton const&){};
TfListenerSingleton(TfListenerSingleton const&) = delete;
TfListenerSingleton& operator=(TfListenerSingleton const&) = delete;
};

// tf Utility
Expand Down

0 comments on commit 6599cfe

Please sign in to comment.