7 lines
212 B
C++
7 lines
212 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 |