mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
Use signed int type for Aint
This commit is contained in:
parent
e1be58011f
commit
de731d4df7
@ -70,8 +70,8 @@ struct NG_MPI_Group {
|
||||
};
|
||||
|
||||
struct NG_MPI_Aint {
|
||||
uintptr_t value = 0;
|
||||
NG_MPI_Aint(uintptr_t value_) : value(value_) {}
|
||||
intptr_t value = 0;
|
||||
NG_MPI_Aint(intptr_t value_) : value(value_) {}
|
||||
NG_MPI_Aint() = default;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user