Make lib/ui/compositing/... compatible with .clang_tidy. (flutter/engine#48001)

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-15 15:09:05 -08:00 committed by GitHub
parent 97b5d699e6
commit 9ce1ec8867

View File

@ -38,7 +38,7 @@ class SceneBuilder : public RefCountedDartWrappable<SceneBuilder> {
void pushTransformHandle(Dart_Handle layer_handle,
Dart_Handle matrix4_handle,
fml::RefPtr<EngineLayer> oldLayer) {
const fml::RefPtr<EngineLayer>& oldLayer) {
tonic::Float64List matrix4(matrix4_handle);
pushTransform(layer_handle, matrix4, oldLayer);
}