فهرست منبع

config: drop ENTT_NOEXCEPT[_IF]

Michele Caini 3 سال پیش
والد
کامیت
d939a72219
1فایلهای تغییر یافته به همراه0 افزوده شده و 7 حذف شده
  1. 0 7
      src/entt/config/config.h

+ 0 - 7
src/entt/config/config.h

@@ -15,13 +15,6 @@
 #    define ENTT_CATCH if(false)
 #endif
 
-#ifndef ENTT_NOEXCEPT
-#    define ENTT_NOEXCEPT noexcept
-#    define ENTT_NOEXCEPT_IF(expr) noexcept(expr)
-#else
-#    define ENTT_NOEXCEPT_IF(...)
-#endif
-
 #ifdef ENTT_USE_ATOMIC
 #    include <atomic>
 #    define ENTT_MAYBE_ATOMIC(Type) std::atomic<Type>