* Nearly back down to zero compiler warnings again...

afrisby
Adam Frisby 2007-07-19 00:46:27 +00:00
parent 920ffaf24b
commit 5e490e0599
1 changed files with 5 additions and 1 deletions

View File

@ -51,13 +51,15 @@ namespace OpenSim.Region.Scripting.LSL
String = 19 String = 19
} }
#pragma warning disable 649
public struct Vector public struct Vector
{ {
public UInt32 Z; public UInt32 Z;
public UInt32 Y; public UInt32 Y;
public UInt32 X; public UInt32 X;
} }
public struct Rotation public struct Rotation
{ {
public UInt32 S; public UInt32 S;
@ -66,6 +68,8 @@ namespace OpenSim.Region.Scripting.LSL
public UInt32 X; public UInt32 X;
} }
#pragma warning restore 649
public enum Variable_Type_Codes public enum Variable_Type_Codes
{ {
Void = 0, Void = 0,