Changeset 202


Ignore:
Timestamp:
08/11/13 18:36:52 (12 years ago)
Author:
epyon
Message:
  • compilation fix
  • missing sdl_audio implementation file
Location:
trunk
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/array2d.hh

    r200 r202  
    3838                 * Creates a new 2D array.
    3939                 */
    40                 array2d() : m_size(), m_data( nullptr ) {}
     40                array2d() : m_data( nullptr ), m_size() {}
    4141
    4242                /**
     
    4545                 * @param asize The dimensions of the new array.
    4646                 */
    47                 array2d( const ivec2& asize ) : m_size(), m_data( nullptr ) { resize( asize ); }
     47                array2d( const ivec2& asize ) : m_data( nullptr ), m_size() { resize( asize ); }
    4848
    4949                /**
     
    5353                 * @param asize_y The height of the new array.
    5454                 */
    55                 array2d( const sint32 asize_x, const sint32 asize_y ) : m_size(), m_data( nullptr ) { resize( new ivec2( asize_x, asize_y ) ); }
     55                array2d( const sint32 asize_x, const sint32 asize_y ) : m_data( nullptr ), m_size() { resize( new ivec2( asize_x, asize_y ) ); }
    5656               
    5757                /**
Note: See TracChangeset for help on using the changeset viewer.