AllowRotation and size_t

This commit is contained in:
Aik-Siong Koh
2024-01-14 21:40:33 -07:00
committed by PaddleStroke
parent fe99ad2593
commit 85557e1fa4
285 changed files with 1854 additions and 1116 deletions

View File

@@ -45,7 +45,7 @@ void MbD::MBDynStructural::readVelocity(std::vector<std::string>& args)
return;
}
else {
for (int i = 0; i < 3; i++)
for (size_t i = 0; i < 3; i++)
{
auto userFunc = std::make_shared<BasicUserFunction>(popOffTop(args), 1.0);
parser->parseUserFunction(userFunc);
@@ -66,7 +66,7 @@ void MbD::MBDynStructural::readOmega(std::vector<std::string>& args)
return;
}
else {
for (int i = 0; i < 3; i++)
for (size_t i = 0; i < 3; i++)
{
auto userFunc = std::make_shared<BasicUserFunction>(popOffTop(args), 1.0);
parser->parseUserFunction(userFunc);