私は、次のインライン機能を持っている:C++構文の説明
inline void normalizeGrayOutputCentredSigmoide(const type meanValue=(type)0.0, const type sensitivity=(type)2.0, const type maxOutputValue=(type)255.0)
{
normalizeGrayOutputCentredSigmoide(meanValue, sensitivity, 255.0, this->Buffer(), this->Buffer(), this->getNBpixels()), maxOutputValue;
};
このラインで次のコンパイラの警告が表示されます。
warning: right-hand operand of comma has no effect
誰もがこの種の書かれた内容を説明することはできます関数が行うことになって?
この場合、カンマ演算子は何を意味しますか?
最後のパラメータの前にメソッドを閉じる –