Skip to content
Snippets Groups Projects
Commit 64f49682 authored by whh8b's avatar whh8b
Browse files

Delegating constructors does not work until C++11.

parent ea78725b
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,12 @@
namespace Zipr_SDK {
using namespace libIRDB;
using namespace zipr;
Dollop_t::Dollop_t(Instruction_t *start) : Dollop_t()
Dollop_t::Dollop_t(Instruction_t *start) :
m_size(0),
m_fallthrough_dollop(NULL),
m_fallthrough_patched(false),
m_coalesced(false),
m_was_truncated(false)
{
Instruction_t *loop = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment