mirror of
https://github.com/serge1/ELFIO.git
synced 2024-12-27 12:17:28 +00:00
More apropriate way to avoid macro extraction
This commit is contained in:
parent
0826f15d0b
commit
f02366804f
@ -53,7 +53,7 @@ template <class S> class dynamic_section_accessor_template
|
|||||||
if ( tag == DT_NULL )
|
if ( tag == DT_NULL )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
entries_num = (std::min)( entries_num, i + 1 );
|
entries_num = std::min<Elf_Xword>( entries_num, i + 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
return entries_num;
|
return entries_num;
|
||||||
|
Loading…
Reference in New Issue
Block a user