| 41 | "} \n"; |
| 42 | |
| 43 | void StringToDouble(asIScriptGeneric *gen) |
| 44 | { |
| 45 | std::string s = ((CScriptString*)gen->GetArgAddress(0))->buffer; |
| 46 | gen->SetReturnDouble(atof(s.c_str())); |
| 47 | } |
| 48 | |
| 49 | bool Test() |
| 50 | { |
nothing calls this directly
no test coverage detected