This revision was automatically updated to reflect the committed changes.
Closed by commit rL352065: [www] Remove implemented Open Project (authored by
omtcyfz, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D57091?vs=183071&id=183330#
kbobyrev added a comment.
@aprantl if there is still some work left for GSoC/potential contributors, feel
free to mention it and then it should be just updated for the future. I
couldn't infer whether there is still a chunk of work to be done from the
project report, but you might have more inf
kbobyrev created this revision.
kbobyrev added a reviewer: aprantl.
kbobyrev added a project: LLDB.
"Open LLVM Projects" page is used by students willing to apply for Google
Summer of Code, this patch updates the page by removing the "Reimplement LLDB's
command-line commands using the public SB
This revision was automatically updated to reflect the committed changes.
Closed by commit rL323645: [lldb] Silence signed <-> unsigned integer
comparison warning (authored by omtcyfz, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D42
omtcyfz added a comment.
@asmith Thanks!
@davide Thanks for the input!
I'll be able to do land it since I have commit access, thanks!
https://reviews.llvm.org/D42620
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cg
omtcyfz created this revision.
omtcyfz added reviewers: davide, asmith.
`num_args` is unsigned integer, declared as below:
uint32_t num_args = arg_enum->getChildCount();
Comparison with the signed `arg_idx` produces a warning when compiled with
-Wsign-compare flag, this patch addresses this s