From 2e13ba59f530a2546e12b557e834f5db88b4b2f2 Mon Sep 17 00:00:00 2001 From: Pete Harris Date: Tue, 14 Jan 2025 12:42:30 +0000 Subject: [PATCH] Remove incorrect static qualifier (#538) --- Source/astcenc_compress_symbolic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/astcenc_compress_symbolic.cpp b/Source/astcenc_compress_symbolic.cpp index 98d249512..789eac197 100644 --- a/Source/astcenc_compress_symbolic.cpp +++ b/Source/astcenc_compress_symbolic.cpp @@ -1,6 +1,6 @@ // SPDX-License-Identifier: Apache-2.0 // ---------------------------------------------------------------------------- -// Copyright 2011-2024 Arm Limited +// Copyright 2011-2025 Arm Limited // // Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy @@ -1280,7 +1280,7 @@ void compress_block( 1.0f }; - static const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot; + const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot; // Only enable MODE0 fast path if enabled // Never enable for 3D blocks as no "always" block modes are available