[lldb] Use LLDB_VERSION_STRING instead of CLANG_VERSION_STRING

This commit is contained in:
Jonas Devlieghere 2021-12-13 16:58:29 -08:00
parent c6be2ad73a
commit 58473d84e0
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ static const char *GetLLDBVersion() {
#ifdef LLDB_FULL_VERSION_STRING
return LLDB_FULL_VERSION_STRING;
#else
return "lldb version " CLANG_VERSION_STRING;
return "lldb version " LLDB_VERSION_STRING;
#endif
}