Browse Source

meta: no mutable node in meta_type

skypjack 1 day ago
parent
commit
c7a6e65e81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/meta/meta.hpp

+ 1 - 1
src/entt/meta/meta.hpp

@@ -1451,7 +1451,7 @@ public:
     }
 
 private:
-    mutable const internal::meta_type_node *node{};
+    const internal::meta_type_node *node{};
     const meta_ctx *ctx{&locator<meta_ctx>::value_or()};
 };