7 lines
216 B
C++
7 lines
216 B
C++
#ifndef UTILS_TYPES_HPP_
|
|
#define UTILS_TYPES_HPP_
|
|
#define __maybe_unused [[maybe_unused]]
|
|
#define __deprecated_t(text) [[deprecated(text)]]
|
|
#define __deprecated [[deprecated]]
|
|
#define __nodiscard [[nodiscard]]
|
|
#endif |