Skip to content
Snippets Groups Projects
Commit 6febc8ef authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'fix/EnvironmentRemoveCopyAssign' into 'master'

Delete Copy Constructor and copy Assignment in Environment

See merge request amdis/amdis!211
parents 02ba56f5 fa7c8638
Branches
No related tags found
No related merge requests found
......@@ -4,6 +4,9 @@
- Add `BasisMapping` to map multi-indices between flat and blocked IMS.
### Fixed
- `Environment` cannot be copied any more, since this could call `PETSc::Finalize` too early.
## Release 2.10
......
......@@ -61,6 +61,9 @@ namespace AMDiS
/// or the provided initfile filename.
Environment(int& argc, char**& argv, std::string const& initFileName = "");
Environment(Environment const&) = delete;
Environment& operator=(Environment const&) = delete;
/// Finishes MPI and PETSc
~Environment();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment