forked from OSchip/llvm-project
[ExecutionEngine] Fix a warning
This patch fixes the warning: llvm/lib/ExecutionEngine/JITLink/ELF_i386.cpp:66:11: error: unused type alias 'Base' [-Werror,-Wunused-local-typedef]
This commit is contained in:
parent
d8d331bc97
commit
eca990702d
|
@ -63,8 +63,6 @@ private:
|
||||||
|
|
||||||
Error addRelocations() override {
|
Error addRelocations() override {
|
||||||
LLVM_DEBUG(dbgs() << "Adding relocations\n");
|
LLVM_DEBUG(dbgs() << "Adding relocations\n");
|
||||||
using Base = ELFLinkGraphBuilder<ELFT>;
|
|
||||||
|
|
||||||
return Error::success();
|
return Error::success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue