diff options
| author | Pavel Labath <labath@google.com> | 2017-03-13 09:46:15 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-03-13 09:46:15 +0000 |
| commit | 9bd69ad9b8c07665e14f4affc373d65e4423ff98 (patch) | |
| tree | ad7ddc778bbdbe3d29eb3de35e7735c8cbe5d9e8 /lldb/source/Utility/TildeExpressionResolver.cpp | |
| parent | aea3a990a27a568dce95d4294cfce75f48400dce (diff) | |
| download | bcm5719-llvm-9bd69ad9b8c07665e14f4affc373d65e4423ff98.tar.gz bcm5719-llvm-9bd69ad9b8c07665e14f4affc373d65e4423ff98.zip | |
Fix Linux build for the FileSpec changes
Propagate changes that were made during review, and fix a couple of
warnings while I'm in there.
llvm-svn: 297609
Diffstat (limited to 'lldb/source/Utility/TildeExpressionResolver.cpp')
| -rw-r--r-- | lldb/source/Utility/TildeExpressionResolver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Utility/TildeExpressionResolver.cpp b/lldb/source/Utility/TildeExpressionResolver.cpp index 3b033bbc5b6..7bec46d8c36 100644 --- a/lldb/source/Utility/TildeExpressionResolver.cpp +++ b/lldb/source/Utility/TildeExpressionResolver.cpp @@ -62,7 +62,8 @@ bool StandardTildeExpressionResolver::ResolvePartial(StringRef Expr, Buffer.resize(1); Buffer.append(ThisName); - Buffer.append(path::get_separator()) Output.insert(Buffer); + Buffer.append(path::get_separator()); + Output.insert(Buffer); } return true; |

