clang-tidy modernize-use-equals-delete

This commit is contained in:
Daniel Agar
2018-05-18 00:13:27 -04:00
committed by Lorenz Meier
parent 4e32cb17df
commit da5a9043a7
3 changed files with 95 additions and 102 deletions
+2 -2
View File
@@ -230,8 +230,8 @@ private:
virtual void _measure();
/* this class does not allow copying due to ptr data members */
ACCELSIM_mag(const ACCELSIM_mag &);
ACCELSIM_mag operator=(const ACCELSIM_mag &);
ACCELSIM_mag(const ACCELSIM_mag &) = delete;
ACCELSIM_mag operator=(const ACCELSIM_mag &) = delete;
};