================ @@ -338,6 +340,14 @@ class OptionValue { // DeepCopy to it. Inherit from Cloneable to avoid doing this manually. virtual lldb::OptionValueSP Clone() const = 0; + struct DefaultValueFormat { + DefaultValueFormat(Stream &stream) : stream(stream) { + stream.PutCString(" (default: "); + } + ~DefaultValueFormat() { stream.PutChar(')'); } + Stream &stream; ---------------- kastiglione wrote:
done https://github.com/llvm/llvm-project/pull/153233 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits