Changes of clang-format formatting

This commit is contained in:
Serge Lamikhov-Center 2021-08-13 09:42:56 +03:00
parent fc0293ebbd
commit 95eec4f592
3 changed files with 5 additions and 5 deletions

View File

@ -189,7 +189,8 @@ template <class S> class dynamic_section_accessor_template
}
//------------------------------------------------------------------------------
template <class T> void generic_add_entry_dyn( Elf_Xword tag, Elf_Xword value )
template <class T>
void generic_add_entry_dyn( Elf_Xword tag, Elf_Xword value )
{
const endianess_convertor& convertor = elf_file.get_convertor();

View File

@ -33,8 +33,7 @@ template <class S> class modinfo_section_accessor_template
{
public:
//------------------------------------------------------------------------------
modinfo_section_accessor_template( S* section )
: modinfo_section( section )
modinfo_section_accessor_template( S* section ) : modinfo_section( section )
{
process_section();
}

View File

@ -386,8 +386,8 @@ BOOST_AUTO_TEST_CASE( gnu_version_64_le )
BOOST_CHECK_EQUAL( verneed->get_link(), dynstr->get_index() );
for ( int i = 0; i < dynsym.get_symbols_num(); i++ ) {
BOOST_REQUIRE_EQUAL( dynsym.get_symbol( i, name, value, size, bind, type,
section_index, other ),
BOOST_REQUIRE_EQUAL( dynsym.get_symbol( i, name, value, size, bind,
type, section_index, other ),
true );
Elf64_Addr verindex = 0;