| 121 | } |
| 122 | |
| 123 | void MetaName::test() |
| 124 | { |
| 125 | #if defined(DEV_BUILD) || GROW_DEBUG > 0 |
| 126 | if (word) |
| 127 | { |
| 128 | Dictionary::Word* checkWord = get(word->c_str(), word->length()); |
| 129 | fb_assert(checkWord == word); |
| 130 | #ifndef DEV_BUILD |
| 131 | if (word != checkWord) |
| 132 | abort(); |
| 133 | #endif |
| 134 | } |
| 135 | #endif |
| 136 | } |
| 137 | |
| 138 | const char* MetaName::EMPTY = ""; |
| 139 |
no test coverage detected