| 603 | */ |
| 604 | |
| 605 | const ConfigFile::Parameter* ConfigFile::findParameter(const KeyType& name) const |
| 606 | { |
| 607 | fb_assert(!(flags & NATIVE_ORDER)); |
| 608 | FB_SIZE_T pos; |
| 609 | return parameters.find(name, pos) ? ¶meters[pos] : NULL; |
| 610 | } |
| 611 | |
| 612 | /****************************************************************************** |
| 613 | * |
no test coverage detected