projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5898f8
)
[lldb] Clarify docstring for SBBlock::IsInlined, NFC
author
Vedant Kumar
<vsk@apple.com>
Thu, 17 Sep 2020 23:53:17 +0000
(16:53 -0700)
committer
Vedant Kumar
<vsk@apple.com>
Thu, 17 Sep 2020 23:54:58 +0000
(16:54 -0700)
Previously, there was a little ambiguity about whether IsInlined should
return true for an inlined lexical block, since technically the lexical
block would not represent an inlined function (it'd just be contained
within one).
Edit suggested by Jim Ingham.
lldb/bindings/interface/SBBlock.i
patch
|
blob
|
history
diff --git
a/lldb/bindings/interface/SBBlock.i
b/lldb/bindings/interface/SBBlock.i
index 812b41fe5c3ea7c513a202dbf87fae6e220284cc..3972b939b18b967cf375d0deaa6f82dc0d8a6eaf 100644
(file)
--- a/
lldb/bindings/interface/SBBlock.i
+++ b/
lldb/bindings/interface/SBBlock.i
@@
-22,7
+22,7
@@
public:
~SBBlock ();
%feature("docstring",
- "
Does this block represent
an inlined function?"
+ "
Is this block contained within
an inlined function?"
) IsInlined;
bool
IsInlined () const;