mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-22 20:45:38 +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);
|
||||
}
|
||||
|
||||
///// <summary>
|
||||
///// Gets the hash code for this Box2.
|
||||
///// </summary>
|
||||
/// <summary>
|
||||
/// Gets the hash code for this Box2.
|
||||
/// </summary>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked
|
||||
|
|
Loading…
Reference in a new issue