[Scummvm-cvs-logs] scummvm-tools master -> 6e037cd1fec56eabf3453a65028811b3a3b3842d

criezy criezy at scummvm.org
Sun Mar 6 01:51:57 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
6e037cd1fe TOOLS: Fix build with gcc 5


Commit: 6e037cd1fec56eabf3453a65028811b3a3b3842d
    https://github.com/scummvm/scummvm-tools/commit/6e037cd1fec56eabf3453a65028811b3a3b3842d
Author: Stephen Kitt (steve at sk2.org)
Date: 2016-03-06T00:51:15Z

Commit Message:
TOOLS: Fix build with gcc 5

gcc 5 can't find init() like this, it needs this->init().

Changed paths:
    decompiler/test/codegen.h



diff --git a/decompiler/test/codegen.h b/decompiler/test/codegen.h
index c28aff8..4e03f39 100644
--- a/decompiler/test/codegen.h
+++ b/decompiler/test/codegen.h
@@ -51,7 +51,7 @@ public:
 	std::basic_ios<cT, traits>(&m_sbuf),
 	std::basic_ostream<cT, traits>(&m_sbuf)
 	{
-		init(&m_sbuf);
+		this->init(&m_sbuf);
 	}
 
 private:






More information about the Scummvm-git-logs mailing list