Make ambiguous implicit conversion from LSLInteger to uint explicit
0.6.0-stable
Melanie Thielker 2008-09-24 11:16:53 +00:00
parent a060b24322
commit a042302100
1 changed files with 1 additions and 1 deletions

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;
}