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/TextData/Differencing/Match.cs')
-rw-r--r--src/Text/Def/TextData/Differencing/Match.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Def/TextData/Differencing/Match.cs b/src/Text/Def/TextData/Differencing/Match.cs
index dedd673..82476e0 100644
--- a/src/Text/Def/TextData/Differencing/Match.cs
+++ b/src/Text/Def/TextData/Differencing/Match.cs
@@ -7,6 +7,7 @@ using System.Collections.Generic;
namespace Microsoft.VisualStudio.Text.Differencing
{
+#pragma warning disable CA1710 // Identifiers should have correct suffix
/// <summary>
/// Represents a range of matches between two sequences as a pair of spans of equal length.
/// </summary>
@@ -20,6 +21,7 @@ namespace Microsoft.VisualStudio.Text.Differencing
/// (0, 0, 2) and (4, 4, 1)
///</remarks>
public class Match : IEnumerable<Tuple<int, int>>
+#pragma warning restore CA1710 // Identifiers should have correct suffix
{
private Span left;
private Span right;