mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-24 11:41:14 +00:00
Fix pointless warning when compiling Box2.cs
Showed warning "Missing XML comment for publicly visible type or member 'OpenTK.Box2.GetHashCode()' (CS1591) ", because there were five / instead of three / to indicate an XML comment.
This commit is contained in:
parent
99b9bf65f2
commit
9401b4dd84
|
@ -190,9 +190,9 @@ namespace OpenTK
|
||||||
return obj is Box2 && Equals((Box2) obj);
|
return obj is Box2 && Equals((Box2) obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
///// <summary>
|
/// <summary>
|
||||||
///// Gets the hash code for this Box2.
|
/// Gets the hash code for this Box2.
|
||||||
///// </summary>
|
/// </summary>
|
||||||
public override int GetHashCode()
|
public override int GetHashCode()
|
||||||
{
|
{
|
||||||
unchecked
|
unchecked
|
||||||
|
|
Loading…
Reference in a new issue