1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Add more constructors to ObsoleteAttribute

This commit is contained in:
disarray2077 2023-01-13 18:06:15 -03:00 committed by GitHub
parent 5b80116c8d
commit 3e210999ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -505,11 +505,21 @@ namespace System
[AttributeUsage(.Method | .Constructor | .Class | .Struct | .Alias | .Interface | .Property)]
public struct ObsoleteAttribute : Attribute
{
public this()
{
}
public this(bool isError)
{
}
public this(String error)
{
}
public this(String error, bool isError)
{