Use signed int type for Aint

This commit is contained in:
Matthias Hochsteger 2024-05-07 15:04:00 +02:00
parent e1be58011f
commit de731d4df7

View File

@ -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;
};