From 24db66bdfca4fdf3b08019d1185c9c5735e76f84 Mon Sep 17 00:00:00 2001 From: schoen <schoen@irmb.tu-bs.de> Date: Fri, 21 May 2021 10:43:18 +0200 Subject: [PATCH] fixed unused index variable --- .../GridGenerator/grid/BoundaryConditions/BoundaryCondition.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gpu/GridGenerator/grid/BoundaryConditions/BoundaryCondition.h b/src/gpu/GridGenerator/grid/BoundaryConditions/BoundaryCondition.h index c4f9afac7..28570b46e 100644 --- a/src/gpu/GridGenerator/grid/BoundaryConditions/BoundaryCondition.h +++ b/src/gpu/GridGenerator/grid/BoundaryConditions/BoundaryCondition.h @@ -119,6 +119,7 @@ public: void fillSlipNormalLists() { for (uint index : this->indices) { + (void)index; this->normalXList.push_back(normalX); this->normalYList.push_back(normalY); this->normalZList.push_back(normalZ); -- GitLab