| 97 | } |
| 98 | |
| 99 | static std::string SLTypeString(SLType t) { |
| 100 | for (const auto& pair : SLTypes) { |
| 101 | if (pair.first == t) { |
| 102 | return pair.second; |
| 103 | } |
| 104 | } |
| 105 | return ""; |
| 106 | } |
| 107 | |
| 108 | std::shared_ptr<Program> ProgramBuilder::CreateProgram(Context* context, |
| 109 | const ProgramInfo* programInfo) { |
no outgoing calls
no test coverage detected