次の方法で共有


コンパイラ エラー C2617

'function' : 一貫しない return ステートメント

指定された関数には宣言された戻り値の型がなく、前の return ステートメントで値が指定されていませんでした。

次の例では C2617 が生成されます。

// C2617.cpp
int i;
func() {   // no return type prototype
   if( i ) return;   // no return value
   else return( 1 );   // C2617 detected on this line
}

考えられる解決方法:

// C2617b.cpp
// compile with: /c
int i;
int MyF() {
   if (i)
      return 0;
   else
      return (1);
}