| 58 | } |
| 59 | |
| 60 | StatusVector::ImplStatusVector::ImplStatusVector(const ISC_STATUS* s) throw() |
| 61 | : Base::ImplBase(0, 0), |
| 62 | m_status_vector(*getDefaultMemoryPool()), |
| 63 | m_strings(*getDefaultMemoryPool()) |
| 64 | { |
| 65 | fb_assert(s); |
| 66 | |
| 67 | clear(); |
| 68 | |
| 69 | // special case - empty initialized status vector, no warnings |
| 70 | if (s[0] != isc_arg_gds || s[1] != 0 || s[2] != 0) |
| 71 | append(s); |
| 72 | } |
| 73 | |
| 74 | StatusVector::ImplStatusVector::ImplStatusVector(const IStatus* s) throw() |
| 75 | : Base::ImplBase(0, 0), |
nothing calls this directly
no test coverage detected