41 #ifndef __BASE_COMPILER_HH__ 42 #define __BASE_COMPILER_HH__ 48 #if defined(__GNUC__) // clang or gcc 49 # define M5_ATTR_NORETURN __attribute__((noreturn)) 50 # define M5_DUMMY_RETURN 51 # define M5_VAR_USED __attribute__((unused)) 52 # define M5_ATTR_PACKED __attribute__ ((__packed__)) 53 # define M5_NO_INLINE __attribute__ ((__noinline__)) 54 # define M5_DEPRECATED __attribute__((deprecated)) 55 # define M5_DEPRECATED_MSG(MSG) __attribute__((deprecated(MSG))) 56 # define M5_UNREACHABLE __builtin_unreachable() 57 # define M5_PUBLIC __attribute__ ((visibility ("default"))) 58 # define M5_LOCAL __attribute__ ((visibility ("hidden"))) 61 #if defined(__clang__) 62 # define M5_CLASS_VAR_USED M5_VAR_USED 64 # define M5_CLASS_VAR_USED 68 #if defined __has_cpp_attribute 71 #if __has_cpp_attribute(fallthrough) 72 #define M5_FALLTHROUGH [[fallthrough]] 74 #define M5_FALLTHROUGH 77 #if __has_cpp_attribute(nodiscard) 78 #define M5_NODISCARD [[nodiscard]] 84 #define M5_FALLTHROUGH 93 #if __cplusplus >= 201402L // C++14 100 template<
typename T,
typename... Args>
104 return std::unique_ptr<T>(
105 new T( std::forward<Args>(constructor_args)... )
109 #endif // __cplusplus >= 201402L 113 #endif // __BASE_COMPILER_HH__ std::unique_ptr< T > make_unique(Args &&... constructor_args)
Defining custom version of make_unique: m5::make_unique<>()