summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/TildeExpressionResolver.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-03-13 09:46:15 +0000
committerPavel Labath <labath@google.com>2017-03-13 09:46:15 +0000
commit9bd69ad9b8c07665e14f4affc373d65e4423ff98 (patch)
treead7ddc778bbdbe3d29eb3de35e7735c8cbe5d9e8 /lldb/source/Utility/TildeExpressionResolver.cpp
parentaea3a990a27a568dce95d4294cfce75f48400dce (diff)
downloadbcm5719-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.cpp3
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;
OpenPOWER on IntegriCloud