[Lldb-commits] [PATCH] D57363: Fix handling of	CreateTemplateParameterList when there is an empty pack
    Adrian Prantl via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Mon Jan 28 16:41:32 PST 2019
    
    
  
aprantl added inline comments.
================
Comment at: packages/Python/lldbsuite/test/expression_command/radar_47565290/TestClassTemplateSpecializationParametersHandling.py:23
+
+        (self.target, self.process, _, bkpt) = lldbutil.run_to_source_breakpoint(self, '// break here',
+                lldb.SBFileSpec("main.cpp", False))
----------------
FYI, Python allows you to write this as `self.target, self.process, _, bkpt =` without the parentheses, too.
Since you aren't any of the return values, you could just call the function and ignore the return value.
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57363/new/
https://reviews.llvm.org/D57363
    
    
More information about the lldb-commits
mailing list