Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs')
-rw-r--r--src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs b/src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs
index e83a7cd5d..b8816567f 100644
--- a/src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs
+++ b/src/ILLink.Shared/TrimAnalysis/ConstIntValue.cs
@@ -11,7 +11,7 @@ namespace ILLink.Shared.TrimAnalysis
/// <summary>
/// Represents a ldc on an int32.
/// </summary>
- sealed record ConstIntValue : SingleValue
+ internal sealed record ConstIntValue : SingleValue
{
public ConstIntValue (int value) => Value = value;