Skip to content

Commit 3ef6ca2

Browse files
authored
[ClangCL] fix clang-cl warning (microsoft#6106)
Remove unused function VerifyOutputWithExpectedValueUInt4.
1 parent 5f7834d commit 3ef6ca2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tools/clang/unittests/HLSLExec/ExecutionTest.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6895,13 +6895,6 @@ static bool VerifyOutputWithExpectedValueUInt(uint32_t output, uint32_t ref,
68956895
CompareOutputWithExpectedValueUInt(output, ref, tolerance));
68966896
}
68976897

6898-
static void VerifyOutputWithExpectedValueUInt4(XMUINT4 output, XMUINT4 ref) {
6899-
VERIFY_ARE_EQUAL(output.x, ref.x);
6900-
VERIFY_ARE_EQUAL(output.y, ref.y);
6901-
VERIFY_ARE_EQUAL(output.z, ref.z);
6902-
VERIFY_ARE_EQUAL(output.w, ref.w);
6903-
}
6904-
69056898
enum class ToleranceType {
69066899
EPSILON,
69076900
RELATIVE_EPSILON,

0 commit comments

Comments
 (0)