Skip to content

Commit 37332bc

Browse files
committed
[Object] Drop unnecessary const qualifier to fix gcc Wignored-qualifiers warning. NFC.
1 parent 5e29112 commit 37332bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/DXContainer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Error DirectX::PSVRuntimeInfo::parse(uint16_t ShaderKind) {
301301

302302
// String table starts at a 4-byte offset.
303303
Current = reinterpret_cast<const char *>(
304-
alignTo<4>(reinterpret_cast<const uintptr_t>(Current)));
304+
alignTo<4>(reinterpret_cast<uintptr_t>(Current)));
305305

306306
uint32_t StringTableSize = 0;
307307
if (Error Err = readInteger(Data, Current, StringTableSize))

0 commit comments

Comments
 (0)