Browse Source

Suppress CS0114 (Member hides inherited member; missing override keyword)

tags/v0.20
Sam Harwell Haiping 5 years ago
parent
commit
e268b89c6f
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TensorFlowNET.Core/Operations/Initializers/GlorotUniform.cs

+ 2
- 0
src/TensorFlowNET.Core/Operations/Initializers/GlorotUniform.cs View File

@@ -31,7 +31,9 @@ namespace Tensorflow.Operations.Initializers


} }


#pragma warning disable CS0114 // Member hides inherited member; missing override keyword
public object get_config() public object get_config()
#pragma warning restore CS0114 // Member hides inherited member; missing override keyword
{ {
return new return new
{ {


Loading…
Cancel
Save