diff options
author | Adam Frisby | 2007-07-19 00:46:27 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-19 00:46:27 +0000 |
commit | 5e490e059916bc26f2493506c9d2599103da2a41 (patch) | |
tree | 31c4511a3ef2b859228bd1b36714a7b18624d1e4 /OpenSim | |
parent | * Cleaned out remaining references to the old LocalStorage system in prep. to... (diff) | |
download | opensim-SC_OLD-5e490e059916bc26f2493506c9d2599103da2a41.zip opensim-SC_OLD-5e490e059916bc26f2493506c9d2599103da2a41.tar.gz opensim-SC_OLD-5e490e059916bc26f2493506c9d2599103da2a41.tar.bz2 opensim-SC_OLD-5e490e059916bc26f2493506c9d2599103da2a41.tar.xz |
* Nearly back down to zero compiler warnings again...
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/scripting/Engines/LSLEngine/LSLHandler/LSO_Enums.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/scripting/Engines/LSLEngine/LSLHandler/LSO_Enums.cs b/OpenSim/Region/Environment/Scenes/scripting/Engines/LSLEngine/LSLHandler/LSO_Enums.cs index 6f93954..7cac152 100644 --- a/OpenSim/Region/Environment/Scenes/scripting/Engines/LSLEngine/LSLHandler/LSO_Enums.cs +++ b/OpenSim/Region/Environment/Scenes/scripting/Engines/LSLEngine/LSLHandler/LSO_Enums.cs | |||
@@ -51,13 +51,15 @@ namespace OpenSim.Region.Scripting.LSL | |||
51 | String = 19 | 51 | String = 19 |
52 | } | 52 | } |
53 | 53 | ||
54 | 54 | #pragma warning disable 649 | |
55 | |||
55 | public struct Vector | 56 | public struct Vector |
56 | { | 57 | { |
57 | public UInt32 Z; | 58 | public UInt32 Z; |
58 | public UInt32 Y; | 59 | public UInt32 Y; |
59 | public UInt32 X; | 60 | public UInt32 X; |
60 | } | 61 | } |
62 | |||
61 | public struct Rotation | 63 | public struct Rotation |
62 | { | 64 | { |
63 | public UInt32 S; | 65 | public UInt32 S; |
@@ -66,6 +68,8 @@ namespace OpenSim.Region.Scripting.LSL | |||
66 | public UInt32 X; | 68 | public UInt32 X; |
67 | } | 69 | } |
68 | 70 | ||
71 | #pragma warning restore 649 | ||
72 | |||
69 | public enum Variable_Type_Codes | 73 | public enum Variable_Type_Codes |
70 | { | 74 | { |
71 | Void = 0, | 75 | Void = 0, |