| 297 | |
| 298 | template<typename T> |
| 299 | static T ValueOr(bool b, T val, T el) |
| 300 | { |
| 301 | if(b) { |
| 302 | return val; |
| 303 | } |
| 304 | |
| 305 | return el; |
| 306 | } |
| 307 | //----------------------------------------------------------------------------- |
| 308 | |
| 309 | void CodeGenerator::InsertArg(const CXXDependentScopeMemberExpr* stmt) |
no outgoing calls
no test coverage detected