mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Mantis #2250
Make ambiguous implicit conversion from LSLInteger to uint explicit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user