| 86 | } |
| 87 | |
| 88 | int BlockFromStyle(int style) const { |
| 89 | int b = 0; |
| 90 | for (std::vector<WordClassifier>::const_iterator it=classifiers.begin(); it != classifiers.end(); ++it) { |
| 91 | if (it->IncludesStyle(style)) |
| 92 | return b; |
| 93 | b++; |
| 94 | } |
| 95 | return -1; |
| 96 | } |
| 97 | |
| 98 | public: |
| 99 |
nothing calls this directly
no test coverage detected