Skip to content

Commit

Permalink
[ClangCL] Fix warning in PixDiaTest.cpp (#6395)
Browse files Browse the repository at this point in the history
Fix type mismatch waring.
  • Loading branch information
python3kgae authored Mar 7, 2024
1 parent f19b3f5 commit 263a773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/clang/unittests/HLSL/PixDiaTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2839,7 +2839,7 @@ void main()
VERIFY_SUCCEEDED(field->QueryInterface(IID_PPV_ARGS(&mike)));
DWORD secondFieldOffset = 0;
VERIFY_SUCCEEDED(mike->GetOffsetInBits(&secondFieldOffset));
VERIFY_ARE_EQUAL(32, secondFieldOffset);
VERIFY_ARE_EQUAL(32u, secondFieldOffset);
}

void PixDiaTest::RunSizeAndOffsetTestCase(
Expand Down

0 comments on commit 263a773

Please sign in to comment.