[Lldb-commits] [lldb] [LLDB][SaveCore] Add SBCoreDumpOptions Object, and SBProcess::SaveCore() overload (PR #98403)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 17 14:10:42 PDT 2024


================
@@ -1256,7 +1256,7 @@ class CommandObjectProcessSaveCore : public CommandObjectParsed {
 
   class CommandOptions : public Options {
   public:
-    CommandOptions() = default;
+    CommandOptions(){};
----------------
clayborg wrote:

revert this to use "= default;". The code is the same, but not need to change a line of code if we don't have to.

https://github.com/llvm/llvm-project/pull/98403


More information about the lldb-commits mailing list