| 128 | } |
| 129 | |
| 130 | TStringBuf CurValOrDef(bool useDef = true) const { |
| 131 | TStringBuf val(CurValOrOpt()); |
| 132 | if (!val.IsInited() && useDef && CurOpt()->HasDefaultValue()) |
| 133 | val = CurOpt()->GetDefaultValue(); |
| 134 | return val; |
| 135 | } |
| 136 | |
| 137 | // true if this option was actually specified by the user |
| 138 | bool IsExplicit() const { |
no test coverage detected