| 71 | std::string gRealToStringTemp; |
| 72 | |
| 73 | bool RealToString(OsiArgumentDesc & args) |
| 74 | { |
| 75 | gRealToStringTemp = std::to_string(args[0].Float); |
| 76 | args[1].String = gRealToStringTemp.c_str(); |
| 77 | return true; |
| 78 | } |
| 79 | |
| 80 | void ForLoop(OsiArgumentDesc const & args) |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected