netlist: Revert changes intended to make the code work on OSX 10.10.

* This is working on all contemporary compilers. If outdated compilers
are to be used it is fine but a suitable compile path should be used.
This commit is contained in:
couriersud 2020-10-03 02:06:12 +02:00
parent 0f9926f02c
commit 467b8f7d09
2 changed files with 4 additions and 4 deletions

View File

@ -53,8 +53,8 @@ namespace plib
pmatrix2d(const pmatrix2d &) = delete;
pmatrix2d &operator=(const pmatrix2d &) = delete;
pmatrix2d(pmatrix2d &&) = delete;
pmatrix2d &operator=(pmatrix2d &&) = delete;
pmatrix2d(pmatrix2d &&) noexcept = delete;
pmatrix2d &operator=(pmatrix2d &&) noexcept = delete;
~pmatrix2d()
{

View File

@ -37,8 +37,8 @@ namespace plib
pmatrix_cr(const pmatrix_cr &) = default;
pmatrix_cr &operator=(const pmatrix_cr &) = default;
pmatrix_cr(pmatrix_cr &&) = default;
pmatrix_cr &operator=(pmatrix_cr &&) = default;
pmatrix_cr(pmatrix_cr &&) noexcept(std::is_nothrow_move_constructible<parray<value_type, NSQ>>::value) = default;
pmatrix_cr &operator=(pmatrix_cr &&) noexcept(std::is_nothrow_move_assignable<parray<value_type, NSQ>>::value) = default;
enum constants_e
{