diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-08-22 15:18:40 +0000 | 
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-08-22 15:18:40 +0000 | 
| commit | 4ae79199ed1a2d6dc8961ed124048f5622b95bab (patch) | |
| tree | 65707f3eba5d5bf56ef6f688eb2592ca3a5c7f59 | |
| parent | ab2f68d5adf83dfb2484ad2c0b7aff7f2badc23d (diff) | |
| download | bcm5719-llvm-4ae79199ed1a2d6dc8961ed124048f5622b95bab.tar.gz bcm5719-llvm-4ae79199ed1a2d6dc8961ed124048f5622b95bab.zip  | |
[lldb] Remove ')' to fix the build
That ')' slipped in by accident in the reformatting commit.
llvm-svn: 369660
| -rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index b55a63618d1..f4788666d47 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -355,7 +355,7 @@ public:        for (size_t i = 0; i < num_matches; ++i) {          request.AddCompletion(              llvm::StringRef(process_infos.GetProcessNameAtIndex(i), -                            process_infos.GetProcessNameLengthAtIndex(i)))); +                            process_infos.GetProcessNameLengthAtIndex(i)));        }      }  | 

