コード例 #1
0
ファイル: Value.cpp プロジェクト: Axitonium/SourceEngine2007
 bool Scalar::Equal( Scalar& a, Scalar& b )
{
    if( a.Type() != b.Type() )
        return false;

    DataType* pA = a.Get();
    DataType* pB = b.Get();

    return DataType::Equal( pA, pB );
}