mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
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:
parent
0f9926f02c
commit
467b8f7d09
@ -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()
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user