diff --git a/runtime/tr.source/trj9/ilgen/J9IlGeneratorMethodDetails.hpp b/runtime/tr.source/trj9/ilgen/J9IlGeneratorMethodDetails.hpp index caf319c4073..dd9cd322991 100644 --- a/runtime/tr.source/trj9/ilgen/J9IlGeneratorMethodDetails.hpp +++ b/runtime/tr.source/trj9/ilgen/J9IlGeneratorMethodDetails.hpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2016 IBM Corp. and others + * Copyright (c) 2000, 2017 IBM Corp. and others * * This program and the accompanying materials are made available under * the terms of the Eclipse Public License 2.0 which accompanies this @@ -59,12 +59,16 @@ class OMR_EXTENSIBLE IlGeneratorMethodDetails : public OMR::IlGeneratorMethodDet friend class IlGeneratorMethodDetailsOverrideForReplay; public: - IlGeneratorMethodDetails() + IlGeneratorMethodDetails() : + OMR::IlGeneratorMethodDetailsConnector() { _method = NULL; } - IlGeneratorMethodDetails(J9Method * const method) : _method(method) { } + IlGeneratorMethodDetails(J9Method * const method) : + OMR::IlGeneratorMethodDetailsConnector(), + _method(method) + { } IlGeneratorMethodDetails(TR_ResolvedMethod *method);