mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Some fixes for new gcc/clang
Minor fixes for newer gcc/clang. These issues were seen when using ubuntu-latest (Ubuntu 22.04) on Github Actions.
This commit is contained in:
@@ -22,6 +22,10 @@
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning( disable : 4996 )
|
||||
#endif
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||
#endif
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -199,7 +199,7 @@ const RifRftSegmentData* RifRftSegment::segmentData( int segmentNumber ) const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
const RifRftSegmentData* RifRftSegment::segmentDataByIndex( int segmentIndex ) const
|
||||
{
|
||||
CVF_ASSERT( segmentIndex < m_topology.size() );
|
||||
CVF_ASSERT( segmentIndex < static_cast<int>( m_topology.size() ) );
|
||||
|
||||
return &( m_topology[segmentIndex] );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user