diff options
author | Mike Mazur | 2008-07-27 07:09:33 +0000 |
---|---|---|
committer | Mike Mazur | 2008-07-27 07:09:33 +0000 |
commit | 11a3fbf4aa058ae0ec50a2aa0bea12e33e96b14b (patch) | |
tree | 481b884671141c04a694a901c6f7f54c2945ed9c /OpenSim/Region/ScriptEngine/Common | |
parent | Implement LSLFloat {+,-,*,/} LSLFloat operations. Fix issues 1532, 1701, 1824 & (diff) | |
download | opensim-SC_OLD-11a3fbf4aa058ae0ec50a2aa0bea12e33e96b14b.zip opensim-SC_OLD-11a3fbf4aa058ae0ec50a2aa0bea12e33e96b14b.tar.gz opensim-SC_OLD-11a3fbf4aa058ae0ec50a2aa0bea12e33e96b14b.tar.bz2 opensim-SC_OLD-11a3fbf4aa058ae0ec50a2aa0bea12e33e96b14b.tar.xz |
Conversion from double to LSLInteger needs to be explicit. Fix issue 1826.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs index d5211f5..5607706 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | |||
@@ -1286,7 +1286,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1286 | return new LSLInteger(u); | 1286 | return new LSLInteger(u); |
1287 | } | 1287 | } |
1288 | 1288 | ||
1289 | static public implicit operator LSLInteger(double d) | 1289 | static public explicit operator LSLInteger(double d) |
1290 | { | 1290 | { |
1291 | return new LSLInteger(d); | 1291 | return new LSLInteger(d); |
1292 | } | 1292 | } |