Skip to content

Commit

Permalink
TOOLS: Fix build with gcc 5
Browse files Browse the repository at this point in the history
gcc 5 can't find init() like this, it needs this->init().
  • Loading branch information
skitt authored and criezy committed Mar 6, 2016
1 parent 573c93e commit 6e037cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decompiler/test/codegen.h
Expand Up @@ -51,7 +51,7 @@ class basic_onullstream: public std::basic_ostream<cT, traits> {
std::basic_ios<cT, traits>(&m_sbuf),
std::basic_ostream<cT, traits>(&m_sbuf)
{
init(&m_sbuf);
this->init(&m_sbuf);
}

private:
Expand Down

0 comments on commit 6e037cd

Please sign in to comment.