Removed kOutput variable which was not used

tensorflow/lite/kernels/expand_dims.cc:30:15: warning: unused variable 'kOutput' [-Wunused-const-variable]
constexpr int kOutput = 0;
This commit is contained in:
Siju 2019-01-01 09:13:37 +05:30 committed by GitHub
parent 3ae375aa92
commit bf4c3e0d4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,6 @@ namespace builtin {
namespace expand_dims {
constexpr int kInput = 0;
constexpr int kAxis = 1;
constexpr int kOutput = 0;
namespace {
TfLiteStatus ExpandTensorDim(TfLiteContext* context, const TfLiteTensor& input,