Various one-liners.
- Author
- Alexander Sherikov
- Copyright
- 2019 Alexander Sherikov, Licensed under the Apache License, Version 2.0. (see LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
Definition in file misc.h.
Go to the source code of this file.
◆ CPPUT_DISABLE_CLASS_COPY
#define CPPUT_DISABLE_CLASS_COPY |
( |
|
Class | ) |
|
Value:public: \
Class(const Class &) = delete; \
Class &operator=(const Class &) = delete; \
Class(Class &&) = delete; \
Class &operator=(Class &&) = delete;
Definition at line 23 of file misc.h.
◆ CPPUT_MACRO_SUBSTITUTE
#define CPPUT_MACRO_SUBSTITUTE |
( |
|
macro | ) |
macro |
◆ CPPUT_UNUSED_ARG
#define CPPUT_UNUSED_ARG |
( |
|
parameter | ) |
(void)parameter; |
Sometimes it is not possible to omit name of an unused parameter, in such cases this macro can be used to suppress compiler warnings about unused parameters.
Definition at line 19 of file misc.h.