Abraxas/CCS  Home  Table of Contents

Module - 30.html

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite

CCS -C Test Suite for Module - 30.cpp

// 30) Avoid overloading &&, ||, or , (comma).

class C30 {
public:

// bad 30

    C30 operator&&() ;
    C30 operator||() ;
    C30 operator,() ;

// ok 30

    C30 operator+=();
};

Abraxas/CCS  Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite CCS