From: hristov Date: Wed, 9 Apr 2008 09:11:37 +0000 (+0000) Subject: Bug fix: missing return X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=1793149ad1b4f00b1bb98643163d487b5dccf288;p=u%2Fmrichter%2FAliRoot.git Bug fix: missing return --- diff --git a/STEER/AliCentralTrigger.h b/STEER/AliCentralTrigger.h index 968a19024de..351d69d00fa 100644 --- a/STEER/AliCentralTrigger.h +++ b/STEER/AliCentralTrigger.h @@ -57,7 +57,7 @@ protected: private: void SetOwner(Bool_t x=kTRUE){SetBit(22,x);} // Bit 22 indicates that the object owns fConfiguration - Bool_t IsOwner() const {TestBit(22);} // Test bit 22 to check that the object owns fConfiguration + Bool_t IsOwner() const {return TestBit(22);} // Test bit 22 to check that the object owns fConfiguration Bool_t IsSelected( TString detName, TString& detectors ) const; AliCentralTrigger( const AliCentralTrigger& ctp ); // Implemented AliCentralTrigger& operator=( const AliCentralTrigger& ctp ); // Not implemented