Import Geant4 11.1.2 source tree

This commit is contained in:
Gabriele Cosmo
2023-06-19 17:17:14 +02:00
parent 84a556a9dc
commit aef78ca386
309 changed files with 35572 additions and 34678 deletions
+4
View File
@@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2023-05-03 Gabriele Cosmo (intercoms-V11-00-07)
- Fixed compilation warning on gcc-13.1 for array subscript outside array
bounds in G4ProfilerMessenger::SetNewValue().
## 2022-11-18 Gabriele Cosmo (intercoms-V11-00-06)
- More compilation warnings fixes for implicit type conversions.
+1 -1
View File
@@ -189,7 +189,7 @@ void G4ProfilerMessenger::SetNewValue(G4UIcommand* command, G4String value)
G4UIcmdWithABool* ui = itr.first;
if(command == ui)
{
command_line.push_back(itr.second);
command_line.push_back(itr.second.c_str());
command_line.push_back(value);
break;
}