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/TextLogic/Tagging/ITag.cs')
-rw-r--r--src/Text/Def/TextLogic/Tagging/ITag.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Def/TextLogic/Tagging/ITag.cs b/src/Text/Def/TextLogic/Tagging/ITag.cs
index 21fe434..a8696f8 100644
--- a/src/Text/Def/TextLogic/Tagging/ITag.cs
+++ b/src/Text/Def/TextLogic/Tagging/ITag.cs
@@ -4,10 +4,12 @@
//
namespace Microsoft.VisualStudio.Text.Tagging
{
+#pragma warning disable CA1040 // Avoid empty interfaces
/// <summary>
/// The base interface of all tags.
/// </summary>
public interface ITag
+#pragma warning restore CA1040 // Avoid empty interfaces
{
}
-} \ No newline at end of file
+}