Skip to content

Commit

Permalink
use inline
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Feb 3, 2025
1 parent 68fa03c commit 64d68e5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions libmei/addons/att.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,11 @@ class Att : public AttConverterBase {
std::string MeasurementsignedToStr(data_MEASUREMENTSIGNED data) const;
data_MEASUREMENTSIGNED StrToMeasurementsigned(const std::string &value, bool logWarning = true) const;

std::string MeasurementunsignedToStr(data_MEASUREMENTUNSIGNED data) const { return MeasurementsignedToStr(data); }
data_MEASUREMENTUNSIGNED StrToMeasurementunsigned(const std::string &value, bool logWarning = true) const
inline std::string MeasurementunsignedToStr(data_MEASUREMENTUNSIGNED data) const
{
return MeasurementsignedToStr(data);
}
inline data_MEASUREMENTUNSIGNED StrToMeasurementunsigned(const std::string &value, bool logWarning = true) const
{
return StrToMeasurementsigned(value, logWarning);
}
Expand Down

0 comments on commit 64d68e5

Please sign in to comment.