Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Modules/Core/Common/include/itkVariableLengthVector.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ VariableLengthVector<TValue>::Reserve(ElementIdentifier size)
itkAssertInDebugAndIgnoreInReleaseMacro(m_Data != nullptr);
}

#ifndef ITK_FUTURE_LEGACY_REMOVE
template <typename TValue>
TValue *
VariableLengthVector<TValue>::AllocateElements(ElementIdentifier size) const
Expand All @@ -213,6 +214,7 @@ VariableLengthVector<TValue>::AllocateElements(ElementIdentifier size) const
itkGenericExceptionMacro("Failed to allocate memory of length " << size << " for VariableLengthVector.");
}
}
#endif

template <typename TValue>
void
Expand Down
Loading