Skip to content
Snippets Groups Projects
Commit 5fd9b527 authored by Bill Lorensen's avatar Bill Lorensen Committed by Kitware Robot
Browse files

Merge topic 'TestPentagonalPrism_MemoryLeak'


b052d7bb COMP: TestPentagonalPrism mempry leak

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !329
parents ecb72a46 b052d7bb
No related merge requests found
......@@ -230,6 +230,7 @@ template<typename T> int TestCell(const VTKCellType cellType,
++status;
}
}
delete [] pweights;
std::cout << "...PASSED" << std::endl;
}
......@@ -317,6 +318,8 @@ template<typename T> int TestCell(const VTKCellType cellType,
<< derivs[0] << " "
<< derivs[1] << " "
<< derivs[2] << " ";
delete [] derivs;
delete [] scalars;
std::cout << "...PASSED" << std::endl;
std::cout << " Testing EvaluateLocation vertex matches pcoord...";
......
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