Fix XMM scanning on Mac x86.
[mono.git] / mcs / class / dlr / Runtime / Microsoft.Scripting.Core / Utils / Extension.cs
1 using System;
2
3 namespace System.Runtime.CompilerServices
4 {
5     /// <summary>
6     /// Indicates that a method is an extension method, or that a class or assembly contains extension methods.
7     /// </summary>
8     [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
9     public sealed class ExtensionAttribute : Attribute { }
10 }