Don't use "i" or "f" for double variable names, this is confusing, especially
when we do it inconsistently.
See #10625.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73934
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxDataInputStream& operator>>(wxULongLong& i);
wxDataInputStream& operator>>(wxLongLong& i);
#endif
- wxDataInputStream& operator>>(double& i);
+ wxDataInputStream& operator>>(double& d);
wxDataInputStream& operator>>(float& f);
protected:
wxDataOutputStream& operator<<(const wxULongLong &i);
wxDataOutputStream& operator<<(const wxLongLong &i);
#endif
- wxDataOutputStream& operator<<(double f);
+ wxDataOutputStream& operator<<(double d);
wxDataOutputStream& operator<<(float f);
protected:
void Write64(const wxUint64* buffer, size_t size);
/**
- Writes the double @a f to the stream using the IEEE format.
+ Writes the double @a d to the stream using the IEEE format.
*/
- void WriteDouble(double f);
+ void WriteDouble(double d);
/**
Writes an array of double to the stream. The amount of double to write is
specified with the @a size variable.
}
#endif // wxLongLong_t
-wxDataInputStream& wxDataInputStream::operator>>(double& i)
+wxDataInputStream& wxDataInputStream::operator>>(double& d)
{
- i = ReadDouble();
+ d = ReadDouble();
return *this;
}
}
#endif // wxLongLong_t
-wxDataOutputStream& wxDataOutputStream::operator<<(double f)
+wxDataOutputStream& wxDataOutputStream::operator<<(double d)
{
- WriteDouble(f);
+ WriteDouble(d);
return *this;
}