From: Bruno Turcksin Date: Tue, 20 Nov 2018 22:23:30 +0000 (+0000) Subject: For consistency use const unsigned int instead of int X-Git-Tag: v9.1.0-rc1~535^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53f1b696d0fa2169dd85228a38cc1462a7c675c8;p=dealii.git For consistency use const unsigned int instead of int --- diff --git a/include/deal.II/matrix_free/cuda_fe_evaluation.h b/include/deal.II/matrix_free/cuda_fe_evaluation.h index 9dfb660bff..d63a8624a2 100644 --- a/include/deal.II/matrix_free/cuda_fe_evaluation.h +++ b/include/deal.II/matrix_free/cuda_fe_evaluation.h @@ -86,7 +86,7 @@ namespace CUDAWrappers * Constructor. */ __device__ - FEEvaluation(int cell_id, + FEEvaluation(const unsigned int cell_id, const data_type * data, SharedData *shdata); @@ -191,7 +191,7 @@ namespace CUDAWrappers typename Number> __device__ FEEvaluation:: - FEEvaluation(int cell_id, + FEEvaluation(const unsigned int cell_id, const data_type * data, SharedData *shdata) : n_cells(data->n_cells)