From ecc4fe1ce5ec2d70db606693f7225843f9bd83de Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 14 Sep 2020 11:55:04 -0700 Subject: [PATCH] Made .All not include dynamic boxing --- BeefLibs/corlib/src/Attribute.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/Attribute.bf b/BeefLibs/corlib/src/Attribute.bf index c65401a3..deff018c 100644 --- a/BeefLibs/corlib/src/Attribute.bf +++ b/BeefLibs/corlib/src/Attribute.bf @@ -48,7 +48,7 @@ namespace System Methods = 0x40, DynamicBoxing = 0x80, //User = 0x100, // Internal Use - All = 0xFF, + All = 0x7F, // Doesn't include dynamic boxing ApplyToInnerTypes = 0x200, }