diff options
author | Stephane Sezer <sas@cd80.net> | 2017-11-02 16:56:52 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2017-11-02 16:56:52 +0000 |
commit | 7a0c218bae7f860e6d4f96c31a498288a92c15c0 (patch) | |
tree | cd775ece8cb6518a63847b3921ee1e4543a9bc2f | |
parent | b55c8b1f1644fea202e1b81c410722d469782cc0 (diff) | |
download | bcm5719-llvm-7a0c218bae7f860e6d4f96c31a498288a92c15c0.tar.gz bcm5719-llvm-7a0c218bae7f860e6d4f96c31a498288a92c15c0.zip |
Run clang-format on lldb.cpp
llvm-svn: 317219
-rw-r--r-- | lldb/source/lldb.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index 7757bd16752..1be04619777 100644 --- a/lldb/source/lldb.cpp +++ b/lldb/source/lldb.cpp @@ -15,11 +15,11 @@ using namespace lldb_private; #include "clang/Basic/Version.h" #ifdef HAVE_SVN_VERSION_INC -# include "SVNVersion.inc" +#include "SVNVersion.inc" #endif #ifdef HAVE_APPLE_VERSION_INC -# include "AppleVersion.inc" +#include "AppleVersion.inc" #endif static const char *GetLLDBRevision() { @@ -38,7 +38,6 @@ static const char *GetLLDBRepository() { #endif } - #define QUOTE(str) #str #define EXPAND_AND_QUOTE(str) QUOTE(str) @@ -73,7 +72,6 @@ const char *lldb_private::GetVersion() { g_version_str += "\n llvm revision "; g_version_str += llvm_rev; } - } return g_version_str.c_str(); } |