summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/PlatformID.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/PlatformID.cs')
-rw-r--r--src/mscorlib/src/System/PlatformID.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mscorlib/src/System/PlatformID.cs b/src/mscorlib/src/System/PlatformID.cs
index 16128079e2..dfab2175ab 100644
--- a/src/mscorlib/src/System/PlatformID.cs
+++ b/src/mscorlib/src/System/PlatformID.cs
@@ -10,18 +10,18 @@
**
**
===========================================================*/
-namespace System {
+namespace System
+{
[Serializable]
internal enum PlatformID
{
- Win32S = 0,
- Win32Windows = 1,
- Win32NT = 2,
- WinCE = 3,
- Unix = 4,
- Xbox = 5,
- MacOSX = 6
+ Win32S = 0,
+ Win32Windows = 1,
+ Win32NT = 2,
+ WinCE = 3,
+ Unix = 4,
+ Xbox = 5,
+ MacOSX = 6
}
-
}