| 471 | } |
| 472 | |
| 473 | string AvoidCPPKeywords(StringPiece name) { |
| 474 | if (IsCPPKeyword(name)) { |
| 475 | return strings::StrCat(name, "_"); |
| 476 | } |
| 477 | return string(name); |
| 478 | } |
| 479 | |
| 480 | void InferArgAttributes(const OpDef::ArgDef& arg, |
| 481 | std::unordered_map<string, string>* inferred_attrs) { |
no test coverage detected