Import Geant4 10.6.0.beta source tree
This commit is contained in:
+4
-4
@@ -65,15 +65,15 @@ const G4ExcitedStringDecay & G4ExcitedStringDecay::operator=(const G4ExcitedStri
|
||||
}
|
||||
|
||||
|
||||
int G4ExcitedStringDecay::operator==(const G4ExcitedStringDecay &) const
|
||||
G4bool G4ExcitedStringDecay::operator==(const G4ExcitedStringDecay &) const
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
int G4ExcitedStringDecay::operator!=(const G4ExcitedStringDecay &) const
|
||||
G4bool G4ExcitedStringDecay::operator!=(const G4ExcitedStringDecay &) const
|
||||
{
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -120,7 +120,7 @@ G4VLongitudinalStringDecay::~G4VLongitudinalStringDecay()
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
int G4VLongitudinalStringDecay::operator==(const G4VLongitudinalStringDecay &) const
|
||||
G4bool G4VLongitudinalStringDecay::operator==(const G4VLongitudinalStringDecay &) const
|
||||
{
|
||||
throw G4HadronicException(__FILE__, __LINE__, "G4VLongitudinalStringDecay::operator== forbidden");
|
||||
return false;
|
||||
@@ -128,7 +128,7 @@ int G4VLongitudinalStringDecay::operator==(const G4VLongitudinalStringDecay &) c
|
||||
|
||||
//-------------------------------------------------------------------------------------
|
||||
|
||||
int G4VLongitudinalStringDecay::operator!=(const G4VLongitudinalStringDecay &) const
|
||||
G4bool G4VLongitudinalStringDecay::operator!=(const G4VLongitudinalStringDecay &) const
|
||||
{
|
||||
throw G4HadronicException(__FILE__, __LINE__, "G4VLongitudinalStringDecay::operator!= forbidden");
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user