Skip to content

Commit

Permalink
fix: nullable is supported in C#8.0 or later
Browse files Browse the repository at this point in the history
  • Loading branch information
mob-sakai committed Dec 16, 2020
1 parent 98515af commit f16985b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/CSharpCompilerSettings/CscSettingsAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public string AdditionalSymbols

public bool IsSupportNullable
{
get { return LVersion.CSharp8 < m_LanguageVersion; }
get { return LVersion.CSharp8 <= m_LanguageVersion; }
}

public static CscSettingsAsset GetAtPath(string path)
Expand Down

0 comments on commit f16985b

Please sign in to comment.