Merge pull request #1936 from nelsonag/multiplicity_warning_fix

Added a space in a warning for multiplicity matrix values being 0
This commit is contained in:
Paul Romano 2022-01-03 08:29:07 -05:00 committed by GitHub
commit f79f402248
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ void ScattData::base_init(int order, const xt::xtensor<int, 1>& in_gmin,
// Raise a warning to the user if we did have to do the conversion
std::string msg =
std::to_string(num_converted) +
"entries in the Multiplicity Matrix were changed from 0 to 1";
" entries in the Multiplicity Matrix were changed from 0 to 1";
warning(msg);
}