summaryrefslogtreecommitdiff
path: root/nn/common/operations/Broadcast.cpp
diff options
context:
space:
mode:
authorMichael Butler <butlermichael@google.com>2019-07-10 12:30:36 -0700
committerMichael Butler <butlermichael@google.com>2019-07-17 17:53:49 +0000
commiteb442ed72066d4b019d52fa0b32e212bac557134 (patch)
treedd0fc96acd1de93d18fcb1b97753b4b6f534270f /nn/common/operations/Broadcast.cpp
parentdf2eba5f8b615fdf9d11bbb9646d2920fc059779 (diff)
downloadml-eb442ed72066d4b019d52fa0b32e212bac557134.tar.gz
Change external local includes to system includes
Some files locally include header files that are not under the directory frameworks/ml/. For example, some files used #include "gtest/gtest.h" instead of #include <gtest/gtest.h> This can adversely affect some static analyzers such as clang-tidy, which analyzes local includes but (optionally) filters out system includes, which are assumed to be someone else's code. This CL changes local includes of any file not found under frameworks/ml/ to system includes. Bug: N/A Test: mma Change-Id: I737a3a9e8527b1d13222eea07da450a514c90b72 Merged-In: I737a3a9e8527b1d13222eea07da450a514c90b72 (cherry picked from commit cf7ebef3a0735727e0389d0893fd37b01357e232)
Diffstat (limited to 'nn/common/operations/Broadcast.cpp')
-rw-r--r--nn/common/operations/Broadcast.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nn/common/operations/Broadcast.cpp b/nn/common/operations/Broadcast.cpp
index 25706720e..9ff6ae82f 100644
--- a/nn/common/operations/Broadcast.cpp
+++ b/nn/common/operations/Broadcast.cpp
@@ -21,8 +21,8 @@
#include "CpuOperationUtils.h"
#include "OperationResolver.h"
-#include "tensorflow/lite/kernels/internal/optimized/legacy_optimized_ops.h"
-#include "tensorflow/lite/kernels/internal/reference/legacy_reference_ops.h"
+#include <tensorflow/lite/kernels/internal/optimized/legacy_optimized_ops.h>
+#include <tensorflow/lite/kernels/internal/reference/legacy_reference_ops.h>
#include "Tracing.h"