From 954f7da3d9a718c8be913c7d2ee771457b08e060 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Tue, 22 Aug 2023 09:52:11 +0900 Subject: [PATCH] Fix coverity issue (auto scene : scenes --> auto& scene : scenes) AUTO_CAUSES_COPY case fix. (Even it have low efforts) Change-Id: I1fc7d4c66c5206484f0e7a46b68313280f5f39d1 Signed-off-by: Eunki, Hong --- dali/internal/common/core-impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali/internal/common/core-impl.cpp b/dali/internal/common/core-impl.cpp index 421d2e5..3714d35 100644 --- a/dali/internal/common/core-impl.cpp +++ b/dali/internal/common/core-impl.cpp @@ -359,7 +359,7 @@ void Core::RelayoutAndFlush(SceneContainer& scenes) RunPostProcessors(); // Rebuild depth tree after event processing has finished - for(auto scene : scenes) + for(auto& scene : scenes) { scene->RebuildDepthTree(); } -- 2.7.4