Skip to content
Snippets Groups Projects
Commit 76ba84ee authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

COMP: fixing compilation errors

parent 80c15ff1
No related branches found
No related tags found
No related merge requests found
...@@ -294,7 +294,7 @@ GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions> ...@@ -294,7 +294,7 @@ GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions>
// Switch keywordlists // Switch keywordlists
inverseTransform->SetInputKeywordList(m_OutputKeywordList); inverseTransform->SetInputKeywordList(m_OutputKeywordList);
inverseTransform->SetInputKeywordList(m_InputKeywordList); inverseTransform->SetOutputKeywordList(m_InputKeywordList);
// Switch dictionnaries // Switch dictionnaries
inverseTransform->SetInputDictionary(m_OutputDictionary); inverseTransform->SetInputDictionary(m_OutputDictionary);
...@@ -324,7 +324,7 @@ typename GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions> ...@@ -324,7 +324,7 @@ typename GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions>
GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions> GenericRSTransform<TScalarType, NInputDimensions, NOutputDimensions>
::GetInverseTransform() const ::GetInverseTransform() const
{ {
typename Self::Pointer inverseTransform = Self::New(); Self * inverseTransform = Self::New();
bool success = this->GetInverse(inverseTransform); bool success = this->GetInverse(inverseTransform);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment