Merge pull request #4433 from kumpera/android-fixes
[mono.git] / mcs / class / System.Numerics / corefx / Vector.cs
1 namespace System.Numerics
2 {
3         static class Vector
4         {
5                 [JitIntrinsic]
6                 public static bool IsHardwareAccelerated {
7                         get {
8                                 return false;
9                         }
10                 }
11         }
12 }