Skip to content

Commit 2e13ba5

Browse files
authoredJan 14, 2025··
Remove incorrect static qualifier (#538)
1 parent a8ce191 commit 2e13ba5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Source/astcenc_compress_symbolic.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// ----------------------------------------------------------------------------
3-
// Copyright 2011-2024 Arm Limited
3+
// Copyright 2011-2025 Arm Limited
44
//
55
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
66
// use this file except in compliance with the License. You may obtain a copy
@@ -1280,7 +1280,7 @@ void compress_block(
12801280
1.0f
12811281
};
12821282

1283-
static const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot;
1283+
const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot;
12841284

12851285
// Only enable MODE0 fast path if enabled
12861286
// Never enable for 3D blocks as no "always" block modes are available

0 commit comments

Comments
 (0)
Please sign in to comment.