Skip to content
Snippets Groups Projects
Commit cdd14be9 authored by Andrei Gheata's avatar Andrei Gheata
Browse files

removed unnecessary assignment op

(cherry picked from commit 470eb1dd)
parent 6cbcde6b
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ public: ...@@ -71,7 +71,7 @@ public:
private: private:
// Copy constructor and assignment not allowed // Copy constructor and assignment not allowed
TGeoRCExtension(const TGeoRCExtension &); // Not implemented TGeoRCExtension(const TGeoRCExtension &); // Not implemented
TGeoRCExtension &operator =(const TGeoRCExtension &) {return *this;} TGeoRCExtension &operator =(const TGeoRCExtension &); // Not implemented
mutable Int_t fRC; // Reference counter mutable Int_t fRC; // Reference counter
TObject *fUserObject; // Attached user object TObject *fUserObject; // Attached user object
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment