aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-09-26 10:18:46 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-09-26 10:18:46 +0100
commit01c10f3f5eefb0473cce3a0cdd381b6db39cf1bb (patch)
treef757fe31f86744b3d1abeb23e05e2a9a2bf8623d /src/entity.cpp
parent42b9039a1fd0307f8b46cd1c750e11db653acea1 (diff)
Use `RecursiveMutex` to fix a race condition with parapoly records
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index e07e882f3..d6d8f58de 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -234,6 +234,7 @@ struct Entity {
} Variable;
struct {
Type * type_parameter_specialization;
+ Type * original_type_for_parapoly;
String ir_mangled_name;
bool is_type_alias;
bool objc_is_implementation;