mirror of
https://github.com/paboyle/Grid.git
synced 2026-06-13 07:33:11 +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
|
||||
///////////////////////////////////////////
|
||||
Lattice(Lattice && r){
|
||||
Lattice(Lattice && r) noexcept {
|
||||
this->_grid = r.Grid();
|
||||
this->_odata = r._odata;
|
||||
this->_odata_size = r._odata_size;
|
||||
|
||||
Reference in New Issue
Block a user