| 28 | |
| 29 | |
| 30 | ColList::item::item(const char* name, unsigned len) |
| 31 | : col_len(len), next(0) |
| 32 | { |
| 33 | fb_utils::copy_terminate(col_name, name, sizeof(col_name)); |
| 34 | } |
| 35 | |
| 36 | |
| 37 | // Deletes all items in the list. |
nothing calls this directly
no test coverage detected