This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
sparkle/libs/utils/types.hpp

7 lines
212 B
C++
Raw Normal View History

2024-12-31 02:20:56 +05:00
#ifndef UTILS_TYPES_HPP_
#define UTILS_TYPES_HPP_
2025-01-30 23:05:59 +05:00
#define _maybe_unused [[maybe_unused]]
#define _deprecated_t(text) [[deprecated(text)]]
#define _deprecated [[deprecated]]
#define _nodiscard [[nodiscard]]
2024-12-31 02:20:56 +05:00
#endif