Make display_list/... compatible with .clang_tidy. (flutter/engine#47993)

Work towards https://github.com/flutter/flutter/issues/134969.

All changes were made automatically (i.e. with `--fix`).
This commit is contained in:
Matan Lurey 2023-11-13 16:48:10 -08:00 committed by GitHub
parent cbc139a9ee
commit 3ca8e17435

View File

@ -644,7 +644,7 @@ class DlRuntimeEffectColorSource final : public DlColorSource {
uniform_data_(std::move(uniform_data)) {}
bool isUIThreadSafe() const override {
for (auto sampler : samplers_) {
for (const auto& sampler : samplers_) {
if (!sampler->isUIThreadSafe()) {
return false;
}