| 43 | |
| 44 | |
| 45 | Keywords* Keywords::Allocator::create() |
| 46 | { |
| 47 | thread_db* tdbb = JRD_get_thread_data(); |
| 48 | fb_assert(tdbb); |
| 49 | Database* dbb = tdbb->getDatabase(); |
| 50 | fb_assert(dbb); |
| 51 | |
| 52 | return FB_NEW_POOL(*dbb->dbb_permanent) Keywords(*dbb->dbb_permanent); |
| 53 | } |
| 54 | |
| 55 | Keywords::Keywords(MemoryPool& pool) |
| 56 | : map(pool) |
nothing calls this directly
no test coverage detected