1
0
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:
Peter Boyle
2026-06-11 09:40:06 -04:00
committed by GitHub
parent 4aa0bca4dc
commit fc9f154ac1
+1 -1
View File
@@ -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;