コード例 #1
0
ファイル: Kokkos_Shape.hpp プロジェクト: RakeshArul/lammps
inline
void assert_counts_are_equal(
  const size_t x_count ,
  const size_t y_count )
{
  if ( x_count != y_count ) {
    assert_counts_are_equal_throw( x_count , y_count );
  }
}
コード例 #2
0
ファイル: Kokkos_Shape.hpp プロジェクト: 00liujj/trilinos
inline
void assert_counts_are_equal(
  const unsigned x_count ,
  const unsigned y_count )
{
  if ( x_count != y_count ) {
    assert_counts_are_equal_throw( x_count , y_count );
  }
}