Restore a local change from our old libg++ to fix a compile warning

This commit is contained in:
veego 1996-03-13 23:07:35 +00:00
parent 46e6b251f1
commit b9f085f78f
1 changed files with 5 additions and 5 deletions

View File

@ -254,6 +254,11 @@ inline Fix24::Fix24(int i)
m = i;
}
inline Fix48::Fix48(const Fix48& f)
{
m = f.m;
}
inline Fix24::operator double() const
{
return Fix24_div * m;
@ -458,11 +463,6 @@ inline Fix48::Fix48()
m.l = 0;
}
inline Fix48::Fix48(const Fix48& f)
{
m = f.m;
}
inline Fix48::Fix48(const Fix24& f)
{
m.u = f.m;