From f68cfd6bb078482c4a779a6e26a56e2734edb5b8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 25 Sep 2022 18:33:28 +1000 Subject: Cleanup: replace C-style casts with functional casts for numeric types --- source/blender/compositor/operations/COM_RenderLayersProg.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor/operations/COM_RenderLayersProg.cc') diff --git a/source/blender/compositor/operations/COM_RenderLayersProg.cc b/source/blender/compositor/operations/COM_RenderLayersProg.cc index fa9efbe15be..e390ab38c7f 100644 --- a/source/blender/compositor/operations/COM_RenderLayersProg.cc +++ b/source/blender/compositor/operations/COM_RenderLayersProg.cc @@ -323,8 +323,8 @@ void RenderLayersDepthProg::execute_pixel_sampled(float output[4], int iy = y; float *input_buffer = this->get_input_buffer(); - if (input_buffer == nullptr || ix < 0 || iy < 0 || ix >= (int)this->get_width() || - iy >= (int)this->get_height()) { + if (input_buffer == nullptr || ix < 0 || iy < 0 || ix >= int(this->get_width()) || + iy >= int(this->get_height())) { output[0] = 10e10f; } else { -- cgit v1.2.3