[lldb] Remove unused code in GetVersion (NFC)

Small cleanup to `lldb_private::GetVersion()`.

Differential Revision: https://reviews.llvm.org/D88939
This commit is contained in:
Dave Lee 2020-10-06 18:23:57 -07:00
parent a52cc9b4be
commit 08924b54de
1 changed files with 0 additions and 5 deletions

View File

@ -33,12 +33,7 @@ static const char *GetLLDBRepository() {
#endif
}
#define QUOTE(str) #str
#define EXPAND_AND_QUOTE(str) QUOTE(str)
const char *lldb_private::GetVersion() {
// On platforms other than Darwin, report a version number in the same style
// as the clang tool.
static std::string g_version_str;
if (g_version_str.empty()) {
g_version_str += "lldb version ";