forked from OSchip/llvm-project
Fix GCC -Wcast-qual warnings
This commit is contained in:
parent
04dcb8009f
commit
c42e385135
|
@ -42,8 +42,8 @@ DumpObjects::operator()(std::unique_ptr<MemoryBuffer> Obj) {
|
|||
}
|
||||
|
||||
LLVM_DEBUG({
|
||||
dbgs() << "Dumping object buffer [ " << (void *)Obj->getBufferStart()
|
||||
<< " -- " << (void *)(Obj->getBufferEnd() - 1) << " ] to "
|
||||
dbgs() << "Dumping object buffer [ " << (const void *)Obj->getBufferStart()
|
||||
<< " -- " << (const void *)(Obj->getBufferEnd() - 1) << " ] to "
|
||||
<< DumpPath << "\n";
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue