Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/TextUI/Find/IncrementalSearchResult.cs')
-rw-r--r--src/Text/Def/TextUI/Find/IncrementalSearchResult.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Def/TextUI/Find/IncrementalSearchResult.cs b/src/Text/Def/TextUI/Find/IncrementalSearchResult.cs
index d027b12..3b4f0f4 100644
--- a/src/Text/Def/TextUI/Find/IncrementalSearchResult.cs
+++ b/src/Text/Def/TextUI/Find/IncrementalSearchResult.cs
@@ -5,6 +5,7 @@
namespace Microsoft.VisualStudio.Text.IncrementalSearch
{
+#pragma warning disable CA1066 // Type {0} should implement IEquatable<T> because it overrides Equals
/// <summary>
/// Consolidates the result of an incremental search operation.
/// </summary>
@@ -14,6 +15,7 @@ namespace Microsoft.VisualStudio.Text.IncrementalSearch
/// the position of the first result.
/// </remarks>
public struct IncrementalSearchResult
+#pragma warning restore CA1066 // Type {0} should implement IEquatable<T> because it overrides Equals
{
#region Public Properties
@@ -108,4 +110,4 @@ namespace Microsoft.VisualStudio.Text.IncrementalSearch
#endregion //Object Overrides
}
-} \ No newline at end of file
+}