diff options
author | Dan Gohman <gohman@apple.com> | 2010-11-02 20:52:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-11-02 20:52:47 +0000 |
commit | 8eeb5ae31df99e14515a180bf83f557eca5bb8ab (patch) | |
tree | 60ff27f420a02618c23626a5e0f25cc49cd8560a /lib/System/Unix | |
parent | d4589a3f582fe5aaf399718ec004f76bc3006343 (diff) |
Micro-optimize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r-- | lib/System/Unix/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 44c81a2f3f..254d4de803 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -79,7 +79,7 @@ using namespace sys; const char sys::PathSeparator = ':'; StringRef Path::GetEXESuffix() { - return ""; + return StringRef(); } Path::Path(StringRef p) |