COMMON: Fix Copy Constructor GCC Warning in 80-bit Float Class
This commit is contained in:
parent
ae62ce361d
commit
8c359e6ec9
1 changed files with 0 additions and 2 deletions
|
@ -43,7 +43,6 @@ struct XPFloat {
|
|||
|
||||
XPFloat();
|
||||
XPFloat(uint16 signAndExponent, uint64 mantissa);
|
||||
XPFloat(const XPFloat &other);
|
||||
|
||||
static XPFloat fromDouble(double value, Semantics semantics = kSemanticsMC68881);
|
||||
static XPFloat fromDoubleBits(uint64 value, Semantics semantics = kSemanticsMC68881);
|
||||
|
@ -57,7 +56,6 @@ struct XPFloat {
|
|||
|
||||
inline XPFloat::XPFloat() : signAndExponent(0), mantissa(0) {}
|
||||
inline XPFloat::XPFloat(uint16 fSignAndExponent, uint64 fMantissa) : signAndExponent(fSignAndExponent), mantissa(fMantissa) {}
|
||||
inline XPFloat::XPFloat(const XPFloat &other) : signAndExponent(other.signAndExponent), mantissa(other.mantissa) {}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue