Skip to content

Commit b034da7

Browse files
committed
[libc++][NFC] Fix include guard for simd helper header
1 parent 00da5eb commit b034da7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/test/std/experimental/simd/test_utils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef TEST_UTIL_H
10-
#define TEST_UTIL_H
9+
#ifndef LIBCXX_TEST_STD_EXPERIMENTAL_SIMD_TEST_UTILS_H
10+
#define LIBCXX_TEST_STD_EXPERIMENTAL_SIMD_TEST_UTILS_H
1111

1212
#include <algorithm>
1313
#include <array>
@@ -78,4 +78,4 @@ void assert_simd_mask_values_equal(const ex::simd_mask<T, SimdAbi>& origin_mask,
7878
assert(origin_mask[i] == expected_value[i]);
7979
}
8080

81-
#endif // TEST_UTIL_H
81+
#endif // LIBCXX_TEST_STD_EXPERIMENTAL_SIMD_TEST_UTILS_H

0 commit comments

Comments
 (0)