Fix various compiler warnings:

* fix -Wunused-parameter
* fix -Wunused-function
* fix -Wunused-private-field
* fix -Wunused-variable
* fix -Winconsistent-missing-override
This commit is contained in:
wmayer
2024-04-30 16:59:31 +02:00
parent 9e4def7104
commit 56f84c8042
14 changed files with 16 additions and 20 deletions

View File

@@ -1803,6 +1803,7 @@ TEST_F(TopoShapeExpansionTest, makeElementThickSolid)
std::vector<TopoShape> shapes = {subFaces[0], subFaces[1]};
// Act
TopoShape& result = cube1TS.makeElementThickSolid(cube1TS, shapes, 0.1, 1e-07);
(void)result;
auto elements = elementMap(cube1TS);
// Assert
EXPECT_EQ(cube1TS.countSubElements("Wire"), 16);