Closed sampsyo closed 10 years ago
Reported by a user:
The "precision flow violation" wasn't working for compound assignment operators (+=, -= etc.). [...] To fix this, in the EnerCTypeChecker.cpp file I have added the following line right above the case clang::Stmt::BinaryOperatorClass: { line: case clang::Stmt::CompoundAssignOperatorClass:
The "precision flow violation" wasn't working for compound assignment operators (+=, -= etc.). [...] To fix this, in the EnerCTypeChecker.cpp file I have added the following line right above the case clang::Stmt::BinaryOperatorClass: { line:
case clang::Stmt::BinaryOperatorClass: {
case clang::Stmt::CompoundAssignOperatorClass:
Reported by a user: