Skip to content

Commit

Permalink
Merge pull request #14797 from tjhei/signed_char
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Feb 15, 2023
2 parents 5f989f0 + 9e0434d commit 8b2974b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/deal.II/matrix_free/face_setup_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ namespace internal
// those faces, a value -1 means that the process with the lower
// rank gets it, whereas a value 0 means that the decision can
// be made in an arbitrary way.
unsigned int n_faces_lower_proc = 0, n_faces_higher_proc = 0;
std::vector<char> assignment(other_range.size(), 0);
unsigned int n_faces_lower_proc = 0, n_faces_higher_proc = 0;
std::vector<signed char> assignment(other_range.size(), 0);
if (inner_face.second.shared_faces.size() > 0)
{
// identify faces that go to the processor with the higher
Expand Down

0 comments on commit 8b2974b

Please sign in to comment.