Fix for enumeration values not explicitly handled in switch statements

This commit is contained in:
Simon Richards 2020-02-28 22:35:23 +00:00
parent 200bb92b9e
commit 670d7d0e22
5 changed files with 12 additions and 0 deletions

View file

@ -227,6 +227,8 @@ ScattData::get_xs(MgxsType xstype, int gin, const int* gout, const double* mu)
fatal_error("Invalid call to get_xs");
}
break;
default:
break;
}
return val;
}