From 75904e5b1aada21c6b5dda6c7aa98502b1e2f1f9 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Sun, 5 Jul 2020 13:28:12 -0700 Subject: [PATCH] Suppress CS0105 (Using directive appeared previously in this namespace) --- src/TensorFlowNET.Core/Operations/gen_array_ops.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TensorFlowNET.Core/Operations/gen_array_ops.cs b/src/TensorFlowNET.Core/Operations/gen_array_ops.cs index 575ea46e..f95de917 100644 --- a/src/TensorFlowNET.Core/Operations/gen_array_ops.cs +++ b/src/TensorFlowNET.Core/Operations/gen_array_ops.cs @@ -19,7 +19,9 @@ using System.Collections.Generic; using static Tensorflow.Binding; using Tensorflow.Eager; using System.Linq; +#pragma warning disable CS0105 // Using directive appeared previously in this namespace using static Tensorflow.Binding; +#pragma warning restore CS0105 // Using directive appeared previously in this namespace namespace Tensorflow {