Jenkins compile fix

This commit is contained in:
Alexander Bock
2017-07-18 18:27:30 -04:00
parent cb53e7f3df
commit 0647bde8bd

View File

@@ -60,7 +60,8 @@ int SkirtedGrid::ySegments() const {
return _ySegments;
}
void SkirtedGrid::validate(int, int) {
void SkirtedGrid::validate([[maybe_unused]] int xSegments, [[maybe_unused]] int ySegments)
{
ghoul_assert(
xSegments > 0 && ySegments > 0,
"Resolution must be at least 1x1. (" + std::to_string(xSegments) + ", " +