On 32-bit architecture ISC_STATUS can't fit 64-bit integer therefore convert such a numbers into text and put string into status-vector. Make sure that temporary instance of this class is not going out of scope before exception is raised !
| 262 | // Make sure that temporary instance of this class is not going out of scope |
| 263 | // before exception is raised ! |
| 264 | class Int64 : public Str |
| 265 | { |
| 266 | public: |
| 267 | explicit Int64(SINT64 val) throw(); |
| 268 | explicit Int64(FB_UINT64 val) throw(); |
| 269 | private: |
| 270 | char text[24]; |
| 271 | }; |
| 272 | |
| 273 | class Quad : public Str |
| 274 | { |
no outgoing calls
no test coverage detected