diff options
Diffstat (limited to 'tools/lldb-mi/MICmdArgValFile.cpp')
| -rw-r--r-- | tools/lldb-mi/MICmdArgValFile.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/lldb-mi/MICmdArgValFile.cpp b/tools/lldb-mi/MICmdArgValFile.cpp index 77e9a6b2af8ec..cb2ba01259034 100644 --- a/tools/lldb-mi/MICmdArgValFile.cpp +++ b/tools/lldb-mi/MICmdArgValFile.cpp @@ -158,10 +158,7 @@ bool CMICmdArgValFile::IsFilePath(const CMIUtilString &vrFileNamePath) const { return false; const bool bValidChars = IsValidChars(vrFileNamePath); - if (bValidChars || bHavePosSlash || bHaveBckSlash) - return true; - - return false; + return bValidChars || bHavePosSlash || bHaveBckSlash; } //++ |
