Skip to content

Commit

Permalink
Add a changelog entry.
Browse files Browse the repository at this point in the history
  • Loading branch information
bangerth committed Nov 28, 2023
1 parent b3bea8c commit 0b11ce4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/modules/changes/20231128_bangerth
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Changed: The interface
Postprocess::VisualizationPostprocessors::CellDataVectorCreator::execute()
used to return an object of type
`std::pair<std::string, Vector<float>*>` where the second part is just a
raw pointer. This has been changed (incompatibly) to
`std::pair<std::string, std::unique_ptr<Vector<float>>>` to avoid the use
of raw pointers and ensure that memory de-allocation happens automatically.
<br>
(Wolfgang Bangerth, 2023/11/28)

0 comments on commit 0b11ce4

Please sign in to comment.