Commit 60366414 authored by Yury Hayeu's avatar Yury Hayeu Committed by Tomáš Oberhuber
Browse files

Fix compilation for the CI

parent 66a488a8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ TEST(TemplatesTestSuite, IndexCollapseTest) {
   testIndexCollapse<4>(5);
}

void testPower(const size_t value, const size_t power, const int expectation) {
void testPower(const size_t value, const size_t power, const size_t expectation) {
   EXPECT_EQ(TNL::Meshes::Templates::pow(value, power), expectation) << value<< " " << power;
}