Bläddra i källkod

doc: avoid using ENTT_NOEXCEPT in the doc

Michele Caini 3 år sedan
förälder
incheckning
74c498cf15
1 ändrade filer med 1 tillägg och 1 borttagningar
  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();
       }
   };