Skip to content
Snippets Groups Projects
Commit eac2505d authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

Update CHANGELOG

parent d0d5af50
No related branches found
No related tags found
1 merge request!688make `FieldMatrix` and `FieldVector` trivially copyable types
......@@ -64,6 +64,16 @@
- The `VectorSize` helper has been deprecated. The `size()` method of
vectors should be called directly instead.
- `FieldMatrix` and `FieldVector` are now [trivially copyable types]
if the underlying field type is trivally copyable.
As a consequence the copy assignment operator of the `DenseVector`
class can no longer be used; just avoid going through
`DenseVector` and use the real vector type instead
(e.g. `FieldVector`).
[trivially copyable types]: https://en.cppreference.com/w/cpp/named_req/TriviallyCopyable
# Release 2.6
**This release is dedicated to Elias Pipping (1986-2017).**
......
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