Skip to content
Snippets Groups Projects
Commit 15340ddf authored by Gleb Struchalin's avatar Gleb Struchalin Committed by Serge Lamikhov-Center
Browse files

Avoid warning about initialization reorder (-Wreorder) on GCC

parent cdafaa0a
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class segment_impl : public segment
public:
//------------------------------------------------------------------------------
segment_impl( endianess_convertor* convertor_ ) :
convertor( convertor_ ), stream_size( 0 ), index( 0 ), data( 0 )
stream_size( 0 ), index( 0 ), data( 0 ), convertor( convertor_ )
{
is_offset_set = false;
std::fill_n( reinterpret_cast<char*>( &ph ), sizeof( ph ), '\0' );
......
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