* Fix not tests in LSL which require implicit casting (see mantis for an example)0.6.0-stable
parent
38e8853e57
commit
e3864de621
|
@ -1610,6 +1610,11 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
return new LSLInteger(-i.value);
|
return new LSLInteger(-i.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static public LSLInteger operator ~(LSLInteger i)
|
||||||
|
{
|
||||||
|
return new LSLInteger(~i.value);
|
||||||
|
}
|
||||||
|
|
||||||
public override bool Equals(Object o)
|
public override bool Equals(Object o)
|
||||||
{
|
{
|
||||||
if (!(o is LSLInteger))
|
if (!(o is LSLInteger))
|
||||||
|
|
Loading…
Reference in New Issue