diff options
author | 2020-04-25 21:26:53 +0200 | |
---|---|---|
committer | 2020-04-26 01:35:31 +0200 | |
commit | 0cf99a5310d14acec93f12eb0434a2253e77917b (patch) | |
tree | 69ed3f5abe0f3ccade35d930b7f0dc4d34fb9601 /src/lib/netlist/plib/mat_cr.h | |
parent | 462943bf9e24b842de5881883f3f2c65d4b29df2 (diff) |
netlist: rename some macros. (nw)
Rename COPYASSIGN* and friends to PCOPYASSIGN*.
Diffstat (limited to 'src/lib/netlist/plib/mat_cr.h')
-rw-r--r-- | src/lib/netlist/plib/mat_cr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/plib/mat_cr.h b/src/lib/netlist/plib/mat_cr.h index 2fba7f83260..11c0444fac5 100644 --- a/src/lib/netlist/plib/mat_cr.h +++ b/src/lib/netlist/plib/mat_cr.h @@ -36,7 +36,7 @@ namespace plib static constexpr const int NSQ = (N < 0 ? -N * N : N * N); static constexpr const int Np1 = (N == 0) ? 0 : (N < 0 ? N - 1 : N + 1); - COPYASSIGNMOVE(pmatrix_cr_t, default) + PCOPYASSIGNMOVE(pmatrix_cr_t, default) enum constants_e { @@ -249,7 +249,7 @@ namespace plib using base = B; using index_type = typename base::index_type; - COPYASSIGNMOVE(pGEmatrix_cr_t, default) + PCOPYASSIGNMOVE(pGEmatrix_cr_t, default) explicit pGEmatrix_cr_t(std::size_t n) : B(n) @@ -483,7 +483,7 @@ namespace plib using base = B; using index_type = typename base::index_type; - COPYASSIGNMOVE(pLUmatrix_cr_t, default) + PCOPYASSIGNMOVE(pLUmatrix_cr_t, default) explicit pLUmatrix_cr_t(std::size_t n) : B(n) |