Setup CI on gitlab

Co-authored-by: Joel Falcou <joel.falcou@lri.fr>

See merge request oss/rotgen!5
This commit is contained in:
Joel Falcou 2025-05-21 11:32:23 +02:00
parent 95ae1ef1e4
commit 7b395f6ad8
3 changed files with 113 additions and 1 deletions

View file

@ -36,7 +36,7 @@ namespace rotgen
if constexpr(Rows != -1) assert(init.size() == Rows && "Mismatched between dynamic and static row size");
if constexpr(Cols != -1)
{
std::size_t c = 0;
[[maybe_unused]] std::size_t c = 0;
if(init.size()) c = init.begin()->size();
assert(c == Cols && "Mismatched between dynamic and static column size");
}