Skip to content

Commit 9952436

Browse files
committed
No ::
1 parent 15d15ee commit 9952436

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/xsimd/arch/xsimd_neon.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{ \
3434
XSIMD_INLINE auto(OP)(VEC a, VEC b) noexcept -> APPLY_TEMPLATE(RT, VEC) \
3535
{ \
36-
return ::OP(a, b); \
36+
return OP(a, b); \
3737
} \
3838
}
3939

@@ -61,7 +61,7 @@
6161
{ \
6262
XSIMD_INLINE auto(OP)(VEC a) noexcept -> VEC \
6363
{ \
64-
return ::OP(a); \
64+
return OP(a); \
6565
} \
6666
}
6767

0 commit comments

Comments
 (0)