Import Geant4 10.6.0.beta source tree
This commit is contained in:
@@ -54,13 +54,13 @@ const G4EventGenerator & G4EventGenerator::operator=(const G4EventGenerator &)
|
||||
}
|
||||
|
||||
|
||||
int G4EventGenerator::operator==(const G4EventGenerator &) const
|
||||
G4bool G4EventGenerator::operator==(const G4EventGenerator &) const
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
int G4EventGenerator::operator!=(const G4EventGenerator &) const
|
||||
G4bool G4EventGenerator::operator!=(const G4EventGenerator &) const
|
||||
{
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -51,13 +51,13 @@ const G4StringModel & G4StringModel::operator=(const G4StringModel &)
|
||||
}
|
||||
|
||||
|
||||
int G4StringModel::operator==(const G4StringModel &) const
|
||||
G4bool G4StringModel::operator==(const G4StringModel &) const
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
int G4StringModel::operator!=(const G4StringModel &) const
|
||||
G4bool G4StringModel::operator!=(const G4StringModel &) const
|
||||
{
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -98,12 +98,12 @@ const G4VSplitableHadron & G4VSplitableHadron::operator=(const G4VSplitableHadro
|
||||
}
|
||||
|
||||
|
||||
int G4VSplitableHadron::operator==(const G4VSplitableHadron &right) const
|
||||
G4bool G4VSplitableHadron::operator==(const G4VSplitableHadron &right) const
|
||||
{
|
||||
return this==&right;
|
||||
}
|
||||
|
||||
int G4VSplitableHadron::operator!=(const G4VSplitableHadron &right) const
|
||||
G4bool G4VSplitableHadron::operator!=(const G4VSplitableHadron &right) const
|
||||
{
|
||||
return this!=&right;
|
||||
}
|
||||
|
||||
+4
-4
@@ -47,13 +47,13 @@ const G4VStringFragmentation & G4VStringFragmentation::operator=(const G4VString
|
||||
return *this;
|
||||
}
|
||||
|
||||
int G4VStringFragmentation::operator==(const G4VStringFragmentation &) const
|
||||
G4bool G4VStringFragmentation::operator==(const G4VStringFragmentation &) const
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
int G4VStringFragmentation::operator!=(const G4VStringFragmentation &) const
|
||||
G4bool G4VStringFragmentation::operator!=(const G4VStringFragmentation &) const
|
||||
{
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user