Explorar el Código

doc: avoid using ENTT_NOEXCEPT in the doc

Michele Caini hace 4 años
padre
commit
74c498cf15
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/md/core.md

+ 1 - 1
docs/md/core.md

@@ -483,7 +483,7 @@ Basically, the whole system relies on a handful of classes. In particular:
   ```cpp
   template<typename Type>
   struct entt::type_index<Type, std::void_d<decltype(Type::index())>> {
-      static entt::id_type value() ENTT_NOEXCEPT {
+      static entt::id_type value() noexcept {
           return Type::index();
       }
   };