From 7fe932417c4e36f89e4ce250788afa3f3f115443 Mon Sep 17 00:00:00 2001
From: Daniel Friesel <daniel.friesel@uos.de>
Date: Fri, 18 Oct 2019 10:39:37 +0200
Subject: [PATCH] outputstream: 'this->' is not needed here

---
 src/os/object/outputstream.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/os/object/outputstream.cc b/src/os/object/outputstream.cc
index fe4ec7f..d97f0d9 100644
--- a/src/os/object/outputstream.cc
+++ b/src/os/object/outputstream.cc
@@ -107,7 +107,7 @@ OutputStream & OutputStream::operator<<(double number)
 
 OutputStream & OutputStream::operator<<(float number)
 {
-	this->printf_float(number);
+	printf_float(number);
 	return *this;
 }
 
-- 
GitLab