Make ambiguous implicit conversion from LSLInteger to uint explicit
This commit is contained in:
Melanie Thielker
2008-09-24 11:16:53 +00:00
parent a060b24322
commit a042302100

View File

@@ -1473,7 +1473,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
return i.value;
}
static public implicit operator uint(LSLInteger i)
static public explicit operator uint(LSLInteger i)
{
return (uint)i.value;
}