Style fixes.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2021-03-07 10:15:34 +01:00
parent c1917c6f77
commit 12f643a80e
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
#ifndef ARBUTILS_MISC_HPP
#define ARBUTILS_MISC_HPP
#define NO_COPY_OR_MOVE(type)\
type(const type&) = delete;\
type(type&&) = delete;\
type& operator=(const type&) = delete;\
type& operator=(type&&) = delete;\
#define NO_COPY_OR_MOVE(type) \
type(const type&) = delete; \
type(type&&) = delete; \
type& operator=(const type&) = delete; \
type& operator=(type&&) = delete;
#endif // ARBUTILS_MISC_HPP