| 2281 | return lastResultInt; |
| 2282 | } |
| 2283 | double Executor::GetResultDouble() |
| 2284 | { |
| 2285 | assert(lastResultType == OTYPE_DOUBLE); |
| 2286 | return lastResultDouble; |
| 2287 | } |
| 2288 | long long Executor::GetResultLong() |
| 2289 | { |
| 2290 | assert(lastResultType == OTYPE_LONG); |
no test coverage detected