From cbf2a21c83e1b0be2bb24a992abc692977445d03 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 13 Apr 2017 12:03:45 +0300 Subject: [PATCH] Fixed registration of tentative classes --- src/dobjtype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dobjtype.cpp b/src/dobjtype.cpp index d7703de1c..117180d75 100644 --- a/src/dobjtype.cpp +++ b/src/dobjtype.cpp @@ -754,7 +754,7 @@ PClass *PClass::FindClassTentative(FName name) Derive(type, name); type->Size = TentativeClass; - InsertIntoHash(); + type->InsertIntoHash(); return type; }