Skip to content
Snippets Groups Projects
Commit cccc78a3 authored by Serge Lamikhov-Center's avatar Serge Lamikhov-Center
Browse files

Add 'explicit' keyword

parent f21f8ad5
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,8 @@ template <class S, typename T> class array_section_accessor_template ...@@ -32,7 +32,8 @@ template <class S, typename T> class array_section_accessor_template
{ {
public: public:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
array_section_accessor_template( const elfio& elf_file, S* section ) explicit array_section_accessor_template( const elfio& elf_file,
S* section )
: elf_file( elf_file ), array_section( section ) : elf_file( elf_file ), array_section( section )
{ {
} }
......
...@@ -32,7 +32,8 @@ template <class S> class dynamic_section_accessor_template ...@@ -32,7 +32,8 @@ template <class S> class dynamic_section_accessor_template
{ {
public: public:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
dynamic_section_accessor_template( const elfio& elf_file, S* section ) explicit dynamic_section_accessor_template( const elfio& elf_file,
S* section )
: elf_file( elf_file ), dynamic_section( section ), entries_num( 0 ) : elf_file( elf_file ), dynamic_section( section ), entries_num( 0 )
{ {
} }
......
...@@ -43,7 +43,7 @@ class note_section_accessor_template ...@@ -43,7 +43,7 @@ class note_section_accessor_template
{ {
public: public:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
note_section_accessor_template( const elfio& elf_file, S* section ) explicit note_section_accessor_template( const elfio& elf_file, S* section )
: elf_file( elf_file ), notes( section ) : elf_file( elf_file ), notes( section )
{ {
process_section(); process_section();
......
...@@ -64,7 +64,8 @@ template <class S> class relocation_section_accessor_template ...@@ -64,7 +64,8 @@ template <class S> class relocation_section_accessor_template
{ {
public: public:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
relocation_section_accessor_template( const elfio& elf_file, S* section ) explicit relocation_section_accessor_template( const elfio& elf_file,
S* section )
: elf_file( elf_file ), relocation_section( section ) : elf_file( elf_file ), relocation_section( section )
{ {
} }
......
...@@ -30,7 +30,8 @@ template <class S> class symbol_section_accessor_template ...@@ -30,7 +30,8 @@ template <class S> class symbol_section_accessor_template
{ {
public: public:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
symbol_section_accessor_template( const elfio& elf_file, S* symbol_section ) explicit symbol_section_accessor_template( const elfio& elf_file,
S* symbol_section )
: elf_file( elf_file ), symbol_section( symbol_section ) : elf_file( elf_file ), symbol_section( symbol_section )
{ {
hash_section = nullptr; hash_section = nullptr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment