mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
added include <cctype> in cell.cpp
This commit is contained in:
parent
23d7e41592
commit
7cf9bca908
2 changed files with 2 additions and 1 deletions
|
|
@ -4,6 +4,7 @@
|
|||
#include <sstream>
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <cctype>
|
||||
|
||||
#include "openmc/capi.h"
|
||||
#include "openmc/constants.h"
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ void initialize_mpi(MPI_Comm intracomm)
|
|||
// Create bank datatype
|
||||
Particle::Bank b;
|
||||
MPI_Aint disp[6];
|
||||
MPI_Get_address(c&b.r, &disp[0]);
|
||||
MPI_Get_address(&b.r, &disp[0]);
|
||||
MPI_Get_address(&b.u, &disp[1]);
|
||||
MPI_Get_address(&b.E, &disp[2]);
|
||||
MPI_Get_address(&b.wgt, &disp[3]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue