X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fmpiworld.cpp;fp=tools%2Fmpiworld.cpp;h=100d516ab7f785ea0483a297d57a110790d080ba;hb=4d4c9ac74d67bfa694404db2ced52363a93e8d93;hp=39d09a15ea37211e612e4a60d45e57d8bb980c89;hpb=065c60e43bbd0649f42fde5351dc073f59b3aa28;p=ctsim.git diff --git a/tools/mpiworld.cpp b/tools/mpiworld.cpp index 39d09a1..100d516 100644 --- a/tools/mpiworld.cpp +++ b/tools/mpiworld.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: mpiworld.cpp,v 1.2 2000/07/13 07:17:25 kevin Exp $ +** $Id: mpiworld.cpp,v 1.3 2001/01/16 23:19:03 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -29,9 +29,9 @@ #include -MPIWorld::MPIWorld (int& argc, char**& argv) +MPIWorld::MPIWorld (int& argc, char* const *& argv) { - MPI::Init (argc, argv); + MPI::Init (argc, const_cast(argv)); m_comm = MPI::COMM_WORLD.Dup(); m_nProcessors = m_comm.Get_size(); m_myRank = m_comm.Get_rank();