Fix code messages

This commit is contained in:
2025-04-30 20:45:09 +02:00
parent 01c300dce1
commit 1c860f7e4c
6 changed files with 14 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ MullData::MullData()
{
};
bool MullData::getIsEnabled()
bool MullData::getIsEnabled() const
{
return isEnabled_;
}
@@ -30,7 +30,7 @@ void MullData::setIsEnabled(const bool value)
isEnabled_ = value;
}
int MullData::getFactor(const int index)
int MullData::getFactor(const int index) const
{
return index == 1 ? factor1_ : factor2_;
}
@@ -57,12 +57,12 @@ void MullData::updateResult()
}
}
long long int MullData::getResultPart1()
long long int MullData::getResultPart1() const
{
return part1_;
}
long long int MullData::getResultPart2()
long long int MullData::getResultPart2() const
{
return part2_;
}