From 5ea3e2c30a47bab9b87585e309aabdde84f98470 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Tue, 8 Oct 2024 12:05:47 +0500 Subject: [PATCH] fix: isResolved value not copied --- test-app/runtime/src/main/cpp/MetadataEntry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-app/runtime/src/main/cpp/MetadataEntry.h b/test-app/runtime/src/main/cpp/MetadataEntry.h index 0985dd8f0..6e708526c 100644 --- a/test-app/runtime/src/main/cpp/MetadataEntry.h +++ b/test-app/runtime/src/main/cpp/MetadataEntry.h @@ -59,7 +59,7 @@ namespace tns { declaringType = other.declaringType; paramCount = other.paramCount; isFinal = other.isFinal; - isStatic = other.isResolved; + isResolved = other.isResolved; isResolvedSet = other.isResolvedSet; isFinalSet = other.isFinalSet; }