Michele Caini 5 anni fa
parent
commit
57e1bf3afd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      docs/md/meta.md

+ 1 - 1
docs/md/meta.md

@@ -665,7 +665,7 @@ int value = 42;
 // meta type equivalent to that of int *
 // meta type equivalent to that of int *
 entt::meta_any any{&value};
 entt::meta_any any{&value};
 
 
-if(any.type().is_meta_pointer_like()) {
+if(any.type().is_pointer_like()) {
     // meta type equivalent to that of int
     // meta type equivalent to that of int
     if(entt::meta_any ref = *any; ref) {
     if(entt::meta_any ref = *any; ref) {
         // ...
         // ...