Remove redundant call of std::unique_ptr::get.
authorRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 23:26:39 +0000 (23:26 +0000)
committerRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 23:26:39 +0000 (23:26 +0000)
commit9a97acc097e1c90c65cc1e72d30bbee9c1870e1f
tree24415f01cf96ac0817facb9a93353a43913ab11f
parent332e02a164ca8209e4a10f9c5dd82b4aec7955be
Remove redundant call of std::unique_ptr::get.

Obj is an instance of std::unique_ptr, so *Obj.get() is the same as *Obj.

llvm-svn: 288996
lld/ELF/InputFiles.cpp