sparkle/libs/utils/types.hpp
2025-01-30 17:21:08 +05:00

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