Commit 7fe93241 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

outputstream: 'this->' is not needed here

parent a14d5192
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ OutputStream & OutputStream::operator<<(double number)

OutputStream & OutputStream::operator<<(float number)
{
	this->printf_float(number);
	printf_float(number);
	return *this;
}