Skip to content

Commit

Permalink
fix version printed to console
Browse files Browse the repository at this point in the history
  • Loading branch information
tbilloud committed Sep 27, 2024
1 parent dff1778 commit 6f700e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ int main( int argc, char* argv[] )
break;
case 'v':
ss << G4VERSION_MAJOR << "." << G4VERSION_MINOR << "." << G4VERSION_PATCH;
std::cout << "Gate version is 9.2 ; Geant4 version is " << ss.str() << std::endl;
std::cout << "Gate version is 9.4 ; Geant4 version is " << ss.str() << std::endl;
exit(0);
break;
case 'a':
Expand Down

0 comments on commit 6f700e5

Please sign in to comment.