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/Impl/PatternMatching/ContainerPatternMatcher.cs')
-rw-r--r--src/Text/Impl/PatternMatching/ContainerPatternMatcher.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Impl/PatternMatching/ContainerPatternMatcher.cs b/src/Text/Impl/PatternMatching/ContainerPatternMatcher.cs
index 6048e0f..55aa996 100644
--- a/src/Text/Impl/PatternMatching/ContainerPatternMatcher.cs
+++ b/src/Text/Impl/PatternMatching/ContainerPatternMatcher.cs
@@ -43,6 +43,7 @@ namespace Microsoft.VisualStudio.Text.PatternMatching.Implementation
_invalidPattern = _patternSegments.Length == 0 || _patternSegments.Any(s => s.IsInvalid);
}
+#pragma warning disable CA1063
public override void Dispose()
{
base.Dispose();
@@ -52,6 +53,7 @@ namespace Microsoft.VisualStudio.Text.PatternMatching.Implementation
segment.Dispose();
}
}
+#pragma warning restore CA1063
public override PatternMatch? TryMatch(string candidate)
{