sparkle/libs/utils/types.hpp
2025-01-30 23:05:59 +05:00

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