コンパイラの警告 (レベル 1) C4930
'prototype': プロトタイプされている関数が呼び出されませんでした (変数の定義が意図されていますか?)
未使用の関数プロトタイプがコンパイラによって検出されました。 プロトタイプの目的が変数宣言である場合は、開きかっこと閉じかっこを削除してください。
次の例では C4930 が生成されます。
// C4930.cpp
// compile with: /W1
class Lock {
public:
int i;
};
void f() {
Lock theLock(); // C4930
// try the following line instead
// Lock theLock;
}
int main() {
}
C4930 は、コンパイラが関数プロトタイプ宣言と関数呼び出しを区別できない場合にも発生する可能性があります。
次の例では C4930 が生成されます。
// C4930b.cpp
// compile with: /EHsc /W1
class BooleanException
{
bool _result;
public:
BooleanException(bool result)
: _result(result)
{
}
bool GetResult() const
{
return _result;
}
};
template<class T = BooleanException>
class IfFailedThrow
{
public:
IfFailedThrow(bool result)
{
if (!result)
{
throw T(result);
}
}
};
class MyClass
{
public:
bool MyFunc()
{
try
{
IfFailedThrow<>(MyMethod()); // C4930
// try one of the following lines instead
// IfFailedThrow<> ift(MyMethod());
// IfFailedThrow<>(this->MyMethod());
// IfFailedThrow<>((*this).MyMethod());
return true;
}
catch (BooleanException e)
{
return e.GetResult();
}
}
private:
bool MyMethod()
{
return true;
}
};
int main()
{
MyClass myClass;
myClass.MyFunc();
}
上記の例では、引数を 1 つも受け取らないメソッドの結果は、名前のないローカル クラス変数のコンストラクターに引数として渡されます。 ローカル変数に名前を付けるか、オブジェクト インスタンスと、適切な "メンバーへのポインター" 演算子をメソッド呼び出しのプレフィックスにすることによって、呼び出しを明確にすることができます。