Remove extra parentheses.

llvm-svn: 226965
This commit is contained in:
Rui Ueyama 2015-01-23 23:39:30 +00:00
parent cf3063b4a3
commit 036dc97e0e
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ template <class ELFT> std::error_code ELFFile<ELFT>::createAtoms() {
const Elf_Shdr *section = i.first;
// Check if need to create atoms for this section?
if ((ignoreCreateAtomsForSection(section)))
if (ignoreCreateAtomsForSection(section))
continue;
std::vector<Elf_Sym_Iter> &symbols = i.second;