mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-27 13:20:34 +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 {
|
struct NG_MPI_Aint {
|
||||||
uintptr_t value = 0;
|
intptr_t value = 0;
|
||||||
NG_MPI_Aint(uintptr_t value_) : value(value_) {}
|
NG_MPI_Aint(intptr_t value_) : value(value_) {}
|
||||||
NG_MPI_Aint() = default;
|
NG_MPI_Aint() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user