Definition at line 404 of file FXException.h. References std::move(), and p. 00404 : p(o.p) 00405 { 00406 #endif 00407 #else 00408 FXException &&operator=(FXException &&o); 00409 private: 00410 FXException(const FXException &); // disable copy constructor 00411 public: 00412 FXException(FXException &&o) : p(std::move(o.p)) 00413 { 00414 #endif 00415 o.p=0; 00416 }
|