fixes, conditions typecheck

This commit is contained in:
ProgramSnail 2024-02-07 22:45:54 +03:00
parent fe652bc1c2
commit 63d0335188
2 changed files with 70 additions and 21 deletions

View file

@ -28,6 +28,8 @@ public:
bool operator==(const TypeProxy &other) const;
bool operator!=(const TypeProxy&) const = default;
private:
TypeProxy(TypeStorage &type_storage, size_t id)
: type_storage_(&type_storage), id_(id) {}