* IMPORTANT OpenMetaverseTypes CHANGE! Changed string to UUID typecast operator from implicit to explicit. This prevents accidents like "if (myUUID == null)" from compiling
* Added ImageCodec enum git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2209 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -345,7 +345,7 @@ namespace OpenMetaverse
|
||||
/// <param name="val">A UUID in string form. Case insensitive,
|
||||
/// hyphenated or non-hyphenated</param>
|
||||
/// <returns>A UUID built from the string representation</returns>
|
||||
public static implicit operator UUID(string val)
|
||||
public static explicit operator UUID(string val)
|
||||
{
|
||||
return new UUID(val);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user