Code/Framework fixes
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -95,7 +95,7 @@ namespace AZ
|
||||
auto printElement = [&os, &mat](int64_t row, int64_t col) -> std::ostream&
|
||||
{
|
||||
const std::streamsize width = 10;
|
||||
os << std::setw(width) << std::fixed << mat.GetElement(row, col);
|
||||
os << std::setw(width) << std::fixed << mat.GetElement(static_cast<int32_t>(row), static_cast<int32_t>(col));
|
||||
return os;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user