use FieldIntermediate instead of plain Derived*

m_fields contains a .self() method, which would be missing in the
intellisense pass
This commit is contained in:
matcool 2023-03-12 18:20:56 -03:00
parent cf1371f408
commit c1900ac45c
No known key found for this signature in database
GPG key ID: BF58756086D7AB1C

View file

@ -162,7 +162,7 @@ namespace geode {
template <class Derived, class Base>
class Modify : public Base {
public:
Derived* m_fields;
modifier::FieldIntermediate<Derived, Base> m_fields;
};
#endif