summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/StringList.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [lldb][NFC] Remove StringList::AutoCompleteRaphael Isemann2019-08-191-23/+0
| | | | | | | We don't need this very specific function in StringList that we only call once in LLDB. llvm-svn: 369242
* [lldb][NFC] Address review comments to StringList for-loop supportRaphael Isemann2019-08-191-0/+1
| | | | llvm-svn: 369237
* [lldb][NFC] Allow for-ranges on StringListRaphael Isemann2019-08-161-4/+1
| | | | llvm-svn: 369113
* [StringList] Change LongestCommonPrefix APIJonas Devlieghere2019-07-311-4/+3
| | | | | | | | | When investigating a completion bug I got confused by the API. LongestCommonPrefix finds the longest common prefix of the strings in the string list. Instead of returning that string through an output argument, just return it by value. llvm-svn: 367384
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* [NFC] Small code cleanups in utility.Jonas Devlieghere2018-12-131-1/+1
| | | | | | Fix a few small annoyances in Utility I ran into. llvm-svn: 348996
* Remove comments after header includes.Jonas Devlieghere2018-11-111-5/+5
| | | | | | | | | | This patch removes the comments following the header includes. They were added after running IWYU over the LLDB codebase. However they add little value, are often outdates and burdensome to maintain. Differential revision: https://reviews.llvm.org/D54385 llvm-svn: 346625
* iwyu fixes on lldbUtility.Zachary Turner2017-04-061-1/+5
| | | | | | | | | | | | | This patch makes adjustments to header file includes in lldbUtility based on recommendations by the iwyu tool (include-what-you-use). The goal here is to make sure that all files include the exact set of headers which are needed for that file only, to eliminate cases of dead includes (e.g. someone deleted some code but forgot to delete the header includes that that code necessitated), and to eliminate the case where header includes are picked up transitively. llvm-svn: 299676
* Move StringList from Core -> Utility.Zachary Turner2017-03-211-0/+264
llvm-svn: 298412
OpenPOWER on IntegriCloud