Style fixes.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
c1917c6f77
commit
12f643a80e
10
src/Misc.hpp
10
src/Misc.hpp
|
@ -1,10 +1,10 @@
|
||||||
#ifndef ARBUTILS_MISC_HPP
|
#ifndef ARBUTILS_MISC_HPP
|
||||||
#define ARBUTILS_MISC_HPP
|
#define ARBUTILS_MISC_HPP
|
||||||
|
|
||||||
#define NO_COPY_OR_MOVE(type)\
|
#define NO_COPY_OR_MOVE(type) \
|
||||||
type(const type&) = delete;\
|
type(const type&) = delete; \
|
||||||
type(type&&) = delete;\
|
type(type&&) = delete; \
|
||||||
type& operator=(const type&) = delete;\
|
type& operator=(const type&) = delete; \
|
||||||
type& operator=(type&&) = delete;\
|
type& operator=(type&&) = delete;
|
||||||
|
|
||||||
#endif // ARBUTILS_MISC_HPP
|
#endif // ARBUTILS_MISC_HPP
|
||||||
|
|
Loading…
Reference in New Issue