diff options
author | Melanie Thielker | 2008-09-24 11:16:53 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-09-24 11:16:53 +0000 |
commit | a0423021005257ae3ba5b2565bcd5fbfe7303444 (patch) | |
tree | 726b9fcbdab67334dfa4e816b84e08bb09ca82ef /OpenSim/Region/ScriptEngine/Shared | |
parent | another try an lighting the mysql tests, to see if bamboo breaks (diff) | |
download | opensim-SC_OLD-a0423021005257ae3ba5b2565bcd5fbfe7303444.zip opensim-SC_OLD-a0423021005257ae3ba5b2565bcd5fbfe7303444.tar.gz opensim-SC_OLD-a0423021005257ae3ba5b2565bcd5fbfe7303444.tar.bz2 opensim-SC_OLD-a0423021005257ae3ba5b2565bcd5fbfe7303444.tar.xz |
Mantis #2250
Make ambiguous implicit conversion from LSLInteger to uint explicit
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index 5f64743..4c4eff9 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -1473,7 +1473,7 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
1473 | return i.value; | 1473 | return i.value; |
1474 | } | 1474 | } |
1475 | 1475 | ||
1476 | static public implicit operator uint(LSLInteger i) | 1476 | static public explicit operator uint(LSLInteger i) |
1477 | { | 1477 | { |
1478 | return (uint)i.value; | 1478 | return (uint)i.value; |
1479 | } | 1479 | } |