From: laphecet Date: Wed, 15 Feb 2012 17:42:09 +0000 (+0000) Subject: Test for Coverity X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=59e8caf183fb658b0230e0b7cb2eb3eda6ddfe93 Test for Coverity --- diff --git a/MUON/AliMUONPolygon.cxx b/MUON/AliMUONPolygon.cxx index 44b65bb87d3..c2d7471a530 100644 --- a/MUON/AliMUONPolygon.cxx +++ b/MUON/AliMUONPolygon.cxx @@ -82,7 +82,7 @@ fY(0x0) { /// Copy constructor. - ((AliMUONPolygon&)rhs).Copy(*this); + ((AliMUONPolygon&)rhs).AliMUONPolygon::Copy(*this); } //______________________________________________________________________________ @@ -92,7 +92,7 @@ AliMUONPolygon::operator=(const AliMUONPolygon& rhs) /// Assignment operator if ( this != &rhs ) { - rhs.Copy(*this); + rhs.AliMUONPolygon::Copy(*this); } return *this; }