mirror of
https://github.com/paboyle/Grid.git
synced 2026-06-27 14:03:30 +01:00
Modify Lattice move constructor to be noexcept
Add noexcept specifier to move constructor for Lattice class.
This commit is contained in:
@@ -289,7 +289,7 @@ public:
|
|||||||
///////////////////////////////////////////
|
///////////////////////////////////////////
|
||||||
// move constructor
|
// move constructor
|
||||||
///////////////////////////////////////////
|
///////////////////////////////////////////
|
||||||
Lattice(Lattice && r){
|
Lattice(Lattice && r) noexcept {
|
||||||
this->_grid = r.Grid();
|
this->_grid = r.Grid();
|
||||||
this->_odata = r._odata;
|
this->_odata = r._odata;
|
||||||
this->_odata_size = r._odata_size;
|
this->_odata_size = r._odata_size;
|
||||||
|
|||||||
Reference in New Issue
Block a user