aboutsummaryrefslogtreecommitdiff
path: root/reference_bytes_mixer.h
diff options
context:
space:
mode:
authorVictor Hugo Vianna Silva <victorvianna@google.com>2021-07-28 21:35:07 +0000
committerCopybara-Service <copybara-worker@google.com>2021-07-28 14:42:06 -0700
commita91bdd5038a594a877593bc121bd369f24f1e0db (patch)
tree40b2e04cda0e38f7454a8b3deb8d25a397092251 /reference_bytes_mixer.h
parent769128e925d4591347c4f28ccb1e3e552af5f13b (diff)
downloadzucchini-a91bdd5038a594a877593bc121bd369f24f1e0db.tar.gz
[automated] Drop needless <vector> includes in /components/zucchini
This is among the most costful includes for the Chromium build. https://commondatastorage.googleapis.com/chromium-browser-clang/include-analysis.html This batch of CLs attempts to detect and remove leftover includes with a heuristic: choose files which don't contain 'std::vector' or 'push_back'. This doesn't really guarantee that std::vector is not being used, as shown by the snippets below, so please review carefully. ``` auto v = GetVector(); MyVectorAlias v = GetVector(); my_vector_ = GetVector(); ``` This CL was uploaded by git cl split. R=etiennep@chromium.org Bug: 1233968 Change-Id: I4f84f26bfdf81c3997cc939c3d8a692e17ddde9a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3059580 Auto-Submit: Victor Vianna <victorvianna@google.com> Reviewed-by: Etienne Pierre-Doray <etiennep@chromium.org> Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Cr-Commit-Position: refs/heads/master@{#906383} NOKEYCHECK=True GitOrigin-RevId: 9057c66a34aedd20d4eced2562f80c8e50e8771e
Diffstat (limited to 'reference_bytes_mixer.h')
-rw-r--r--reference_bytes_mixer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/reference_bytes_mixer.h b/reference_bytes_mixer.h
index 05407f1..3cbf187 100644
--- a/reference_bytes_mixer.h
+++ b/reference_bytes_mixer.h
@@ -8,7 +8,6 @@
#include <stdint.h>
#include <memory>
-#include <vector>
#include "components/zucchini/buffer_view.h"
#include "components/zucchini/image_utils.h"