| 28 | } |
| 29 | |
| 30 | char TOpt::GetChar() const { |
| 31 | if (Chars_.empty()) |
| 32 | ythrow TConfException() << "no char for option " << this->ToShortString(); |
| 33 | return Chars_.at(0); |
| 34 | } |
| 35 | |
| 36 | char TOpt::GetCharOr0() const { |
| 37 | if (Chars_.empty()) |
no test coverage detected