revert changeset 4469 as this breaks the script engine.
parent
f16c997a74
commit
7cace57ecc
|
@ -1200,17 +1200,11 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
static public implicit operator Int32(LSLInteger i)
|
||||||
static public implicit operator int(LSLInteger i)
|
|
||||||
{
|
{
|
||||||
return i.value;
|
return i.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static public implicit operator uint(LSLInteger i)
|
|
||||||
{
|
|
||||||
return (uint)i.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
static public explicit operator LSLString(LSLInteger i)
|
static public explicit operator LSLString(LSLInteger i)
|
||||||
{
|
{
|
||||||
return new LSLString(i.ToString());
|
return new LSLString(i.ToString());
|
||||||
|
|
Loading…
Reference in New Issue