From 53f1b696d0fa2169dd85228a38cc1462a7c675c8 Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Tue, 20 Nov 2018 22:23:30 +0000 Subject: [PATCH] For consistency use const unsigned int instead of int --- include/deal.II/matrix_free/cuda_fe_evaluation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.5