Locale: fix binary compatibility for BNumberFormat

Issue: https://github.com/HaikuArchives/Album/issues/15
Change-Id: I1f8d5055f929957adb0cca20a8f6b13bcccabfab
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3807
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
This commit is contained in:
Jérôme Duval 2021-03-19 11:11:15 +01:00 committed by Adrien Destugues
parent 7124ff96d3
commit e3c3983827
2 changed files with 8 additions and 0 deletions

View File

@ -44,6 +44,7 @@ public:
BString GetSeparator(BNumberElement element);
private:
BNumberFormat();
BNumberFormat(const BNumberFormat &other);
private:

View File

@ -193,6 +193,13 @@ BNumberFormat::BNumberFormat(const BLocale* locale)
}
BNumberFormat::BNumberFormat()
: BFormat()
{
fPrivateData = new BNumberFormatImpl();
}
BNumberFormat::BNumberFormat(const BNumberFormat &other)
: BFormat(other)
{