Import Geant4 11.0.1 source tree

This commit is contained in:
Gabriele Cosmo
2022-03-23 08:25:50 +01:00
parent 84f33a068c
commit de4f28d823
234 changed files with 61815 additions and 61766 deletions
@@ -62,6 +62,16 @@ inline G4String& G4String::operator=(G4String&& str)
inline G4String::operator const char*() const { return c_str(); }
inline G4String::reference G4String::operator[](int pos)
{
return std::string::operator[](pos);
}
inline G4String::const_reference G4String::operator[](int pos) const
{
return std::string::operator[](pos);
}
inline G4int G4String::compareTo(std::string_view str, caseCompare mode) const
{
if(mode == exact)