Skip to content

Commit 52548f0

Browse files
committed
make unit test helpers static
1 parent a6e1e76 commit 52548f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/UnitTest/test_simd.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace astcenc
3636
*
3737
* The value of @c a is stored to lane 0 (LSB) in the SIMD register.
3838
*/
39-
vfloat8 vfloat8_lit(
39+
static vfloat8 vfloat8_lit(
4040
float a, float b, float c, float d,
4141
float e, float f, float g, float h
4242
) {
@@ -52,7 +52,7 @@ vfloat8 vfloat8_lit(
5252
*
5353
* The value of @c a is stored to lane 0 (LSB) in the SIMD register.
5454
*/
55-
vint8 vint8_lit(
55+
static vint8 vint8_lit(
5656
int a, int b, int c, int d,
5757
int e, int f, int g, int h
5858
) {

0 commit comments

Comments
 (0)