23.05
|
Go to the documentation of this file. 24 #ifndef ARM_COMPUTE_COMMON_MACROS_H 25 #define ARM_COMPUTE_COMMON_MACROS_H 27 #define ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(TypeName) \ 28 TypeName(const TypeName &) = delete; \ 29 TypeName &operator=(const TypeName &) = delete; \ 30 TypeName(TypeName &&) = default; \ 31 TypeName &operator=(TypeName &&) = default