瀏覽代碼

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>