Fix code messages
This commit is contained in:
@@ -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_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user